This MobiLink client integration component sample provides sample code for the graphical version of the component. It provides code for creating upload and message events which your application can expose to the end user. There are comments in the code supplementing this readme. The sample requires Version 9.0.1 Visual Studio.NET 2003 and it is recommended that you obtain 9.0.1 EBF 1760 of higher.
How To Use Sample
Remote database has the following definition applied to the asademo sample database.
'--See rem.sql included with the sample
'ALTER TABLE "DBA"."department" ALTER
"dept_id" SET DEFAULT autoincrement
' go
'
create publication FullSync(
' table DBA.contact,
' table DBA.customer,
' table DBA.department,
' table DBA.employee,
' table DBA.fin_code,
' table DBA.fin_data,
' table DBA.product,
' table DBA.sales_order,
' table DBA.sales_order_items
')
'go
'
'
--Create synchronization user and subscription
'
' create synchronization user
remoteuser
' go
' create synchronization subscription
to FullSync for remoteuser
' go
Enjoy.