You should be able to do it the old-fashioned way:
Code:
Set g_Db = Workspaces(0).OpenDatabase("", False, False, ODBC1_str)
Qry = "delete from table where condition"
g_Db.Execute Qry, dbSQLPassThrough
g_Db.Close
_OR_
Set conMain = g_DB.OpenConnection("ODBC string goes here")
Set qdfTemp = conMain.CreateQueryDef("")
_INSERT_
With qdfTemp
.Prepare = dbQUnprepare
.SQL = "insert into table values('" & "variables to insert here" & "') "
.Execute
End With
_UPDATE_
With qdfTemp
.Prepare = dbQUnprepare
.SQL = "update table set value='" & variable "' " & _
"where condition='" & variable & "'"
.Execute
end with
Edited by JHausmann on 02-23-2000 at 02:57 PM