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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

I want to connect Access Database with ASP Pages

Status
Not open for further replies.

dapoV

Programmer
Jul 5, 2002
2
ZA
How can I connect Database With ASP Pages. Any one with Idea Help Please. HOLA HOLA HOLA ME!!!!!!!!!!!!! SEVEN DOWN
 
set rs= server.createobject("recordset")
Set ObjConn = Server.CreateObject("ADODB.Connection")
ObjConn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" &_
"Data Source=" & filePath


strQuery = "INSERT INTO table values('item',number,'item2'"

rs.open strQuery, objConn

hth

Bastien

There are many ways to skin this cat,
but it still tastes like chicken
 
set rs= server.createobject("recordset")
Set ObjConn = Server.CreateObject("ADODB.Connection")
ObjConn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" &_
"Data Source=" & filePath


strQuery = "INSERT INTO table values('item',number,'item2')"

rs.open strQuery, objConn

hth

Bastien

There are many ways to skin this cat,
but it still tastes like chicken
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top