D
dav
hi
I always use DAO e don't konw well other methods like ADO. This is the code
I wrote:
table 'tblFOXPRO' connect by odbc
Dim DS As DAO.Recordset
Set DS = CurrentDb.OpenRecordset("SELECT tblFOxPRO* FROM tblFOxPRO";")
With DS
.AddNew
!ID = 1
!CAMPO1 = A
!CAMPO2 = B
.Update
End With
This is the error I read:
ERRORE RUN-TIME 3146
ODBC: CHIAMATA NON RIUSCITA
when I do debug the yellow sign is on ".update" . Maybe I forgot any option
in openrecordset? thanks
I always use DAO e don't konw well other methods like ADO. This is the code
I wrote:
table 'tblFOXPRO' connect by odbc
Dim DS As DAO.Recordset
Set DS = CurrentDb.OpenRecordset("SELECT tblFOxPRO* FROM tblFOxPRO";")
With DS
.AddNew
!ID = 1
!CAMPO1 = A
!CAMPO2 = B
.Update
End With
This is the error I read:
ERRORE RUN-TIME 3146
ODBC: CHIAMATA NON RIUSCITA
when I do debug the yellow sign is on ".update" . Maybe I forgot any option
in openrecordset? thanks