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

Using a RecordSet with the ADBC Object

Status
Not open for further replies.

jeepxo

Programmer
Oct 1, 2002
228
CA
Is this even possible?

var con = ADBC.newConnection("reportCard");
var myRecordSet = ADBC.Recordset;
myRecordSet = con.Execute("SELECT * from sheet1 group by StudentNumber");

While !(myRecordSet.EOF)
{
this.getField("student_name").value = myRecordSet("StudentName").value
this.print
myRecordSet.moveNext()
}

my error message is con.execute is not a function
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top