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

SQL Anywhere 12.0.1 » QAnywhere » QAnywhere クライアントアプリケーションの作成

 

QAnywhere の停止

メッセージの送信と受信を完了したら、次のいずれかの手順に従って QAnywhere メッセージングシステムを停止します。

 ♦ QAnywhere の停止 (.NET の場合)
  • QAnywhere Manager を停止し、クローズします。

    mgr.Stop();
    mgr.Close();
 ♦ QAnywhere の停止 (C++ の場合)
  1. QAnywhere Manager をクローズします。

    mgr->stop();
    mgr->close();
  2. ファクトリを終了します。

    QAnywhereFactory_term();

    これで、アプリケーションのメッセージング部分が停止します。

 ♦ QAnywhere の停止 (Java の場合)
  • QAnywhere Manager を停止し、クローズします。

    mgr.stop();
    mgr.close();
 参照