CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6
  1. #1
    Join Date
    Jan 2021
    Posts
    5

    What type of configuration in SQL Server should I use to collect fingerprint values?

    What type of configuration in SQL Server should I use to collect fingerprint values?

    I wrote VB.NET to collect fingerprints for time records.

    I am Thai, I apologize for asking

  2. #2
    Arjay's Avatar
    Arjay is offline Moderator / EX MS MVP Power Poster
    Join Date
    Aug 2004
    Posts
    13,490

    Re: What type of configuration in SQL Server should I use to collect fingerprint valu

    Not sure what you are asking. Are you asking what datatype you should store fingerprint data in? If so, probably a VARBINARY datatype would be suitable.

  3. #3
    Join Date
    Jan 2021
    Posts
    5

    Re: What type of configuration in SQL Server should I use to collect fingerprint valu

    thank Arjay

  4. #4
    Join Date
    Jan 2021
    Posts
    5

    Re: What type of configuration in SQL Server should I use to collect fingerprint valu

    Quote Originally Posted by Arjay View Post
    Not sure what you are asking. Are you asking what datatype you should store fingerprint data in? If so, probably a VARBINARY datatype would be suitable.
    Implicit conversion from data type varchar to varbinary(max) is not allowed. Use the CONVERT function to run this query.

    What kind of fix do I have to do?

  5. #5
    Arjay's Avatar
    Arjay is offline Moderator / EX MS MVP Power Poster
    Join Date
    Aug 2004
    Posts
    13,490

    Re: What type of configuration in SQL Server should I use to collect fingerprint valu

    What type is the data are you trying to store? Is it binary data? String data?

  6. #6
    Join Date
    Jan 2021
    Posts
    5

    Re: What type of configuration in SQL Server should I use to collect fingerprint valu

    Quote Originally Posted by Arjay View Post
    What type is the data are you trying to store? Is it binary data? String data?
    I will save the fingerprint image data to be VARBINARY.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured