Skip to Main Content

Database Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Syncing with eVB

428827Sep 2 2004 — edited Sep 2 2004
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
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Sep 30 2004
Added on Sep 2 2004
1 comment
212 views