Hi Guys, I try to update a record if exist or create it if not.
Here's my code.
strSQL = "SELECT count(*) FROM Table1 "
Set m_RS = m_DB.Execute(strSQL)
If (m_RS.Fields(0).Value) = 0 then
...insert
else
...update
end if
My question is : is there a way...
Here's what I need to do : I need to keep a password and userid into a sql database. This password must be encrypted to make sure nobody can read it. When I need this password, I read the record, decrypt the password, use the password to access something and that's it.
What can be done in...
Hello, I need to keep information into a database field but I need this info to be encrypted. I need to read this info and uncrypted also. What can I do ?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.