Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ado connections

Status
Not open for further replies.

jlynch1

Technical User
Dec 20, 2001
100
IE
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top