Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.1 (日本語) » Ultra Light - C/C++ プログラミング » API リファレンス » Ultra Light C++ API リファレンス » UltraLite_Connection_iface クラス

 

Synchronize 関数

データベースの同期をとります。

構文
bool UltraLite_Connection_iface::Synchronize(
  ul_synch_info_a * info
)
パラメータ
  • info   同期パラメータを保持する ul_synch_info 構造体へのポインタ。

ul_synch_info info;
conn->InitSynchInfo( &info );
info.user_name = UL_TEXT( user_name"user_name" );
info.version = UL_TEXT( version"test" );
conn->Synchronize( &info );