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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: context.cpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/06/01 19:21:26  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: context.cpp,v 1000.3 2004/06/01 19:21:26 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:  Anton Butanayev
  35.  *
  36.  * File Description:
  37.  *    Driver for MySQL server
  38.  *
  39.  */
  40. #include <ncbi_pch.hpp>
  41. #include <dbapi/driver/mysql/interfaces.hpp>
  42. BEGIN_NCBI_SCOPE
  43. CMySQLContext::CMySQLContext()
  44. {
  45. }
  46. CMySQLContext::~CMySQLContext()
  47. {
  48. }
  49. bool CMySQLContext::IsAbleTo(ECapability /*cpb*/) const
  50. {
  51.     return false;
  52. }
  53. bool CMySQLContext::SetLoginTimeout(unsigned int /*nof_secs*/)
  54. {
  55.     return false;
  56. }
  57. bool CMySQLContext::SetTimeout(unsigned int /*nof_secs*/)
  58. {
  59.     return false;
  60. }
  61. bool CMySQLContext::SetMaxTextImageSize(size_t /*nof_bytes*/)
  62. {
  63.     return false;
  64. }
  65. CDB_Connection* CMySQLContext::Connect(const string&   srv_name,
  66.                                        const string&   user_name,
  67.                                        const string&   passwd,
  68.                                        TConnectionMode /*mode*/,
  69.                                        bool            /*reusable*/,
  70.                                        const string&   /*pool_name*/)
  71. {
  72.     return Create_Connection
  73.         (*new CMySQL_Connection(this, srv_name, user_name, passwd));
  74. }
  75. ///////////////////////////////////////////////////////////////////////
  76. // DriverManager related functions
  77. //
  78. static I_DriverContext* MYSQL_CreateContext(map<string,string>* /*attr*/)
  79. {
  80.     return new CMySQLContext();
  81. }
  82. void DBAPI_RegisterDriver_MYSQL(I_DriverMgr& mgr)
  83. {
  84.     mgr.RegisterDriver("mysql", MYSQL_CreateContext);
  85. }
  86. extern "C" {
  87.     NCBI_DBAPIDRIVER_MYSQL_EXPORT
  88.     void* DBAPI_E_mysql()
  89.     {
  90.         return (void*) DBAPI_RegisterDriver_MYSQL;
  91.     }
  92. }
  93. END_NCBI_SCOPE
  94. /*
  95.  * ===========================================================================
  96.  * $Log: context.cpp,v $
  97.  * Revision 1000.3  2004/06/01 19:21:26  gouriano
  98.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  99.  *
  100.  * Revision 1.7  2004/05/17 21:15:34  gorelenk
  101.  * Added include of PCH ncbi_pch.hpp
  102.  *
  103.  * Revision 1.6  2004/04/07 13:41:47  gorelenk
  104.  * Added export prefix to implementations of DBAPI_E_* functions.
  105.  *
  106.  * Revision 1.5  2004/03/24 19:46:53  vysokolo
  107.  * addaed support of blob
  108.  *
  109.  * Revision 1.4  2003/07/17 20:51:37  soussov
  110.  * connections pool improvements
  111.  *
  112.  * Revision 1.3  2003/02/19 03:38:13  vakatov
  113.  * Added DriverMgr related entry point and registration function
  114.  *
  115.  * Revision 1.2  2003/01/06 20:30:26  vakatov
  116.  * Get rid of some redundant header(s).
  117.  * Formally reformatted to closer meet C++ Toolkit/DBAPI style.
  118.  *
  119.  * Revision 1.1  2002/08/13 20:23:14  butanaev
  120.  * The beginning.
  121.  *
  122.  * ===========================================================================
  123.  */