1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...

how fingerprints are stored in the sql database?11?




this is for writing a software using java application for maintaining the attendance of employee of a certain organisation using fingerprint scanner.what is internal processing taking place,and how to access the database using java?


2 Responses to “how fingerprints are stored in the sql database?11?”

  • Damiaan says:

    This depends on the scanner and on the configuration of the scanner.

    Most scanners give a long string.

    Report this comment

  • theprimogen82 says:

    You can always save it as a blob or byte field and type convert it in your application when you read it in. Most databases HASH (encrypt) the fingerprint for security purposes.

    So for instance, in MySQL, you could HASH a new fingerprint and save it into a BLOB column. When you need to check the fingerprint in the future, you simply collect the fingerprint, hash the value, and compare it to the HASHED fingerprint in the database. If they match then you have the same fingerprint.

    HASHed values cannot be decrypted.

    http://dev.mysql.com/doc/refman/4.1/en/data-type-defaults.html

    Report this comment

Leave a Reply

Spam Protection by WP-SpamFree

TigerDirect