Hallo,
habe folgendes zum schreiben eines Feldes in eine ACCESS Datenbank in VB6 programmiert, funktioniert aber nicht:
strSQL = „UPDATE tblDetail " & " SET comment = '“ & Kommentar & _
"’ WHERE Detail_ID = " & ID
Set objConnection = New ADODB.Connection
With objConnection
.CursorLocation = adUseClient
.Mode = adModeShareDenyNone
.Provider = „Microsoft.Jet.OLEDB.4.0“
.ConnectionString = DB
.Open
End With
On Error GoTo Error_exit
Set objRS = New ADODB.Recordset
With objRS
Set .ActiveConnection = objConnection
.CursorLocation = adUseClient
.CursorType = adOpenStatic
.LockType = adLockOptimistic
.Source = strSQL
Call .Open
objConnection.Close
End With
Es tritt kein Fehler auf, aber das Feld ‚comment‘ wird nicht befüllt.
Was mache ich falsch?
Gruß
Gunter