what is the difference between these connections to a database ?
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
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