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...
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.