Jump to content

DSNLESS AND DB DATABASE


LOULOU
 Share

Recommended Posts

The following is an example of connecting and communicating with an access database:

$adoCon = ObjCreate("ADODB.Connection")
$adoCon.Open("Provider=Microsoft.Jet.OLEDB.4.0; Data Source=test.mdb;")
$adoRS = ObjCreate("ADODB.Recordset")
$adoRS.CursorType = 2
$adoRS.LockType = 3
$adoRS.Open("SELECT * FROM tblData", $adoCon)
$adoRS.AddNew
$adoRS.Fields("fldData").Value = 'your value here'
$adoRS.Fields("fldInfo").Value = 'your value here'
$adoRS.Update
$adoRS.Close
$adoCon.Close

It writes data to 'fldData' and fldInfo' in the table 'tblData'

You can find tons of examples of this type by just searching the forum :P

***Note this uses the latest beta***

We have enough youth. How about a fountain of SMART?

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...