George1111
November 5th, 2007, 09:04 AM
I have just found a few examples like
Dim objRS
Set objRS = Server.CreateObject("ADODB.Recordset")
objRS.Open "AllMovies", strConnect, adOpenStatic, AdLockReadOnly, adCmdTable
I have been using
Dim objRS
Set objRS = Server.CreateObject("ADODB.Recordset")
objRS.Open "AllMovies", strConnect, adOpenStatic, AdLockReadOnly
What is the purpose of the adCmdTable parameter
Thanks
Dim objRS
Set objRS = Server.CreateObject("ADODB.Recordset")
objRS.Open "AllMovies", strConnect, adOpenStatic, AdLockReadOnly, adCmdTable
I have been using
Dim objRS
Set objRS = Server.CreateObject("ADODB.Recordset")
objRS.Open "AllMovies", strConnect, adOpenStatic, AdLockReadOnly
What is the purpose of the adCmdTable parameter
Thanks