what is the difference between these connections to a database ?
Server.CreateObject("ADODB.Connection"![Wink ;) ;)](data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)
Server.CreateObject("ADODB.Recordset"![Wink ;) ;)](data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)
this is the code that i use to connect to the database
set objConn = Server.CreateObject("ADODB.Connection"![Wink ;) ;)](data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)
objConn.ConnectionString = "DSN=**;uid=**;pwd=**"
objConn.Open
Set objRS = objConn.Execute(strSQL)
i want to set up a paging system to show 5 records on each page
any help appreciated
Server.CreateObject("ADODB.Connection"
Server.CreateObject("ADODB.Recordset"
this is the code that i use to connect to the database
set objConn = Server.CreateObject("ADODB.Connection"
objConn.ConnectionString = "DSN=**;uid=**;pwd=**"
objConn.Open
Set objRS = objConn.Execute(strSQL)
i want to set up a paging system to show 5 records on each page
any help appreciated