View Single Post
  #8 (permalink)  
Old 11-22-2006, 01:25 PM
meester meester is offline
Senior Member
 
Join Date: Feb 2003
Posts: 212
Default Re:How to connecting to databases using SWFKit(SWFKit 2 and SWFKit Pro 2)

try this selection query
it works for me
Code:
var record = new ActiveXObject("ADODB.Recordset");
record.open("select Name,age from stud", conn, 1, 2);
you can find some info about cursortypes on:
http://www.w3schools.com/ado/met_rs_open.asp


Reply With Quote