J Josef P. Well-known member Local time Today, 05:47 Joined Feb 2, 2023 Messages 1,006 Mar 6, 2024 #21 Query parameters also prevent SQL injection. Unfortunately, you cannot use parameters with DLookup.
cheekybuddha AWF VIP Local time Today, 04:47 Joined Jul 21, 2014 Messages 2,778 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 Yesterday, 23:47 Joined Feb 19, 2002 Messages 45,903 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, 12:47 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..