Can anyone tell me whst the line below does to my database??
"objRst.open strSQL, objConn, 1,3"
Anyones help would be greatfully received
Regards
JeffersThat's just a recordset instantiation.
that will just run whatever query is in the variable strSQL and return the results to objRst.
"objRst.open strSQL, objConn, 1,3"
Anyones help would be greatfully received
Regards
JeffersThat's just a recordset instantiation.
that will just run whatever query is in the variable strSQL and return the results to objRst.