Article ID: 103976
Article Last Modified on 1/9/2003
i = db.ExecuteSQL("action statement")
Dim ds As Dynaset
Set ds = db.CreateDynaset("action statement", SQL_PASSTHROUGH)
ds.Close
If you are using the data control, specify datacontrol.Database as the
database variable as in this example:
' Enter the following two lines as one, single line:
Set ds = Data1.Database.CreateDynaset("action statement",
SQL_PASSTHROUGH)
Const DB_SQLPASSTHROUGH = &H40
Dim db As Database
Set db = OpenDatabase("", False, False, "ODBC")
db.Execute "action statement", DB_SQLPASSTHROUGH
Additional query words: 3.00 buglist3.00 fixlist3.00
Keywords: kbbug kbfix KB103976