Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. gracine

    How to know if record exist

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

    encrypted information

    I'm using SQL 2002. I will check if there's something build in. thanks
  3. gracine

    encrypted information

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

    encrypted information

    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 ?
  5. gracine

    Need to know the size of DB

    Hi is it possible to query database to know how many diskspace it use on disk ? and what is the physical name of that db ?? thanks

Part and Inventory Search

Back
Top