dbl_blob.cpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:4k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: dbl_blob.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:21:12  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: dbl_blob.cpp,v 1000.1 2004/06/01 19:21:12 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Author:  Victor Sapojnikov
  35.  *
  36.  * This simple program illustrates how to read text field data.
  37.  *
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <dbapi/driver/exception.hpp>
  41. #include <dbapi/driver/gateway/interfaces.hpp>
  42. #include <dbapi/driver/samples/dbapi_driver_samples.hpp>
  43. USING_NCBI_SCOPE;
  44. int main()
  45. {
  46.     try {
  47.         CLogger log(&cerr);
  48.         CSSSConnection sssConnection(&log);
  49.         string sHost = "stmartin";
  50.         int iPort = 8765;
  51.         if( sssConnection.connect(sHost.c_str(), iPort) != CSSSConnection::eOk ) {
  52.             cerr<< "FATAL(" << sssConnection.getRetCodeDesc()
  53.                 << "):Failed to connect to SSS server on host:""
  54.                 << sHost << "" port:" << iPort << endl
  55.                 << "tReason:" << sssConnection.getErrMsg() << endl;
  56.             return 1;
  57.         }
  58.         CGWContext my_context(sssConnection);
  59.         SampleDBAPI_Blob(my_context, "MSSQL3");
  60.     } catch (CDB_Exception& e) {
  61.         CDB_UserHandler_Stream myExHandler(&cerr);
  62.         myExHandler.HandleIt(&e);
  63.         puts("nExceptionn");
  64. getchar();
  65.         return 1;
  66.     }
  67.     puts("nOKn");
  68. getchar();
  69.     return 0;
  70. }
  71. /*
  72.  * ===========================================================================
  73.  * $Log: dbl_blob.cpp,v $
  74.  * Revision 1000.1  2004/06/01 19:21:12  gouriano
  75.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  76.  *
  77.  * Revision 1.3  2004/05/17 21:14:41  gorelenk
  78.  * Added include of PCH ncbi_pch.hpp
  79.  *
  80.  * Revision 1.2  2002/03/14 22:53:22  sapojnik
  81.  * Inheriting from I_ interfaces instead of CDB_ classes from driver/public.hpp
  82.  *
  83.  * Revision 1.1  2002/03/14 20:00:42  sapojnik
  84.  * A driver that communicates with a dbapi driver on another machine via CompactProtocol(aka ssssrv)
  85.  *
  86.  * Revision 1.1  2002/02/13 20:59:08  sapojnik
  87.  * rdblib: remote dblib driver = MS SQL + sss comprot
  88.  *
  89.  * Revision 1.1  2002/01/14 20:28:13  sapojnik
  90.  * new SampleDBAPI_Blob
  91.  *
  92.  *
  93.  * ===========================================================================
  94.  */