1.

Illustrate with an ASP program to access a database through ActiveX Data objects.​

Answer»

Answer:

The Data Adapter

OleDb.OleDbDataAdapter. ...

da = New OleDb.OleDbDataAdapter(sql, CON ) ...

SELECT * FROM Table_Name. ...

Select * from Table_Name. ...

"SELECT all the RECORDS FROM the table CALLED Table_Name" ...

SELECT tblContacts.FirstName, tblContacts.Surname FROM tblContacts. ...

sql = "SELECT * FROM tblContacts" ...

da.Fill(DS, "AddressBook



Discussion

No Comment Found