Hello
I'm developing an application for eVB and I'm having problems with the sync API.
At first, I've tried the Oracle Lite 9i version. Some functions didn't worked well (couldn't save the sync parameters), but i could sync using default parameters. Then I've tried the 10g version and synchronization stopped working. The program closes in the sync.doSync line without giving any error advice. Here is the code I am using:
' closes the database
If Not (conn Is Nothing) Then
conn.close
Set conn = Nothing
End If
' sync
On Error Resume Next
Dim sync As MSync.sync
Set sync = CreateObject("MSync.Sync")
sync.DoSync
' verify errors
If Err.Description <> "" Then
...
Else
...
End If
I am using Oracle Lite 10g on Windows XP, Pocket PC 2002 and embedded Visual Basic 3.0. I've searched the forum for problems like this and found the following topics:
517520
494755
Is it a bug?
Thanks in advance
Alexandre Murakami