| |
adminkoe
Posts: 117
Score: 0
Joined: 12/23/2000
From:
Status: offline
|
Hi Cheech, using SQL is easy... strSQL = " * from table where [Criteria] = something" ' to place a record in the DB use "Insert into table where values = something" 'set the connection and open that DB for the query set objRS = server.createobject("adodb.recordset") objRS.open strSQL, "data connection info" hope this helps...
|
|