J Josef P. Well-known member Local time Today, 07:05 Joined Feb 2, 2023 Messages 1,029 Mar 6, 2024 #21 Query parameters also prevent SQL injection. Unfortunately, you cannot use parameters with DLookup.
cheekybuddha AWF VIP Local time Today, 06:05 Joined Jul 21, 2014 Messages 2,803 Mar 7, 2024 #22 Better not to store the password at all. Instead, use a hashing algorithm to hash the password and store the hash. Then, upon password entry, perform a hash of the password entry and compare it to the hash stored against the user.
Better not to store the password at all. Instead, use a hashing algorithm to hash the password and store the hash. Then, upon password entry, perform a hash of the password entry and compare it to the hash stored against the user.
P Pat Hartman Super Moderator Staff member Local time Today, 01:05 Joined Feb 19, 2002 Messages 46,099 Mar 7, 2024 #23 Josef P. said: Unfortunately, you cannot use parameters with DLookup. Click to expand... I do. You just put them in the query rather than using a table.
Josef P. said: Unfortunately, you cannot use parameters with DLookup. Click to expand... I do. You just put them in the query rather than using a table.
M moi Member Local time Today, 14:05 Joined Jan 10, 2024 Messages 273 Mar 7, 2024 #24 Pat Hartman said: That is at least four times someone has asked what the data type of the password column is. Maybe you should answer. I find it hard to believe that it is numeric but what do I know. Click to expand... hi pat, sorry takes time to answer, off to site. Anyway, i got it working with the orig code.. yes my bad, all i thought is a numeric, until i verify the table.. my apologies to all..
Pat Hartman said: That is at least four times someone has asked what the data type of the password column is. Maybe you should answer. I find it hard to believe that it is numeric but what do I know. Click to expand... hi pat, sorry takes time to answer, off to site. Anyway, i got it working with the orig code.. yes my bad, all i thought is a numeric, until i verify the table.. my apologies to all..