在好例子网,分享、交流、成长!
您当前所在位置:首页C/C++ 开发实例C/C++语言基础 → connector/c++库源代码

connector/c++库源代码

C/C++语言基础

下载此实例
  • 开发语言:C/C++
  • 实例大小:0.71M
  • 下载次数:2
  • 浏览次数:7
  • 发布时间:2023-11-02
  • 实例类别:C/C++语言基础
  • 发 布 人:chenxiaolan
  • 文件格式:.zip
  • 所需积分:2
 相关标签: Connect 源代码 c++ EC co

实例介绍

【实例简介】Connector/c 库的源文件。编译方法可看这里:http://www.cnblogs.com/sixbeauty/p/4749827.html

【实例截图】

from clipboard

【核心代码】

.
├── mysql-connector-c -1.1.6
│   ├── ANNOUNCEMENT
│   ├── CHANGES
│   ├── CMakeLists.txt
│   ├── COPYING
│   ├── FindMySQL.cmake
│   ├── INSTALL
│   ├── Licenses_for_Third-Party_Components.txt
│   ├── README
│   ├── VersionInfo.cmake
│   ├── changeCrt.cmake
│   ├── cmake
│   │   └── getmysqlversion.c
│   ├── cppconn
│   │   ├── CMakeLists.txt
│   │   ├── build_config.h
│   │   ├── config.h.cm
│   │   ├── connection.h
│   │   ├── datatype.h
│   │   ├── driver.h
│   │   ├── exception.h
│   │   ├── metadata.h
│   │   ├── parameter_metadata.h
│   │   ├── prepared_statement.h
│   │   ├── resultset.h
│   │   ├── resultset_metadata.h
│   │   ├── sqlstring.h
│   │   ├── statement.h
│   │   ├── variant.h
│   │   ├── version_info.h.cmake
│   │   └── warning.h
│   ├── driver
│   │   ├── CMakeLists.txt
│   │   ├── class_stats.php
│   │   ├── mysql_art_resultset.cpp
│   │   ├── mysql_art_resultset.h
│   │   ├── mysql_art_rset_metadata.cpp
│   │   ├── mysql_art_rset_metadata.h
│   │   ├── mysql_connection.cpp
│   │   ├── mysql_connection.h
│   │   ├── mysql_connection_data.h
│   │   ├── mysql_connection_options.h
│   │   ├── mysql_debug.cpp
│   │   ├── mysql_debug.h
│   │   ├── mysql_driver.cpp
│   │   ├── mysql_driver.h
│   │   ├── mysql_error.h
│   │   ├── mysql_metadata.cpp
│   │   ├── mysql_metadata.h
│   │   ├── mysql_parameter_metadata.cpp
│   │   ├── mysql_parameter_metadata.h
│   │   ├── mysql_prepared_statement.cpp
│   │   ├── mysql_prepared_statement.h
│   │   ├── mysql_ps_resultset.cpp
│   │   ├── mysql_ps_resultset.h
│   │   ├── mysql_ps_resultset_metadata.cpp
│   │   ├── mysql_ps_resultset_metadata.h
│   │   ├── mysql_public_iface.h
│   │   ├── mysql_resultbind.cpp
│   │   ├── mysql_resultbind.h
│   │   ├── mysql_resultset.cpp
│   │   ├── mysql_resultset.h
│   │   ├── mysql_resultset_metadata.cpp
│   │   ├── mysql_resultset_metadata.h
│   │   ├── mysql_statement.cpp
│   │   ├── mysql_statement.h
│   │   ├── mysql_statement_options.h
│   │   ├── mysql_uri.cpp
│   │   ├── mysql_uri.h
│   │   ├── mysql_util.cpp
│   │   ├── mysql_util.h
│   │   ├── mysql_warning.cpp
│   │   ├── mysql_warning.h
│   │   ├── nativeapi
│   │   │   ├── binding_config.h.cm
│   │   │   ├── libmysql_dynamic_proxy.cpp
│   │   │   ├── libmysql_dynamic_proxy.h
│   │   │   ├── libmysql_static_proxy.cpp
│   │   │   ├── libmysql_static_proxy.h
│   │   │   ├── library_loader.cpp
│   │   │   ├── library_loader.h
│   │   │   ├── mysql_client_api.cpp
│   │   │   ├── mysql_client_api.h
│   │   │   ├── mysql_native_connection_wrapper.cpp
│   │   │   ├── mysql_native_connection_wrapper.h
│   │   │   ├── mysql_native_driver_wrapper.cpp
│   │   │   ├── mysql_native_driver_wrapper.h
│   │   │   ├── mysql_native_resultset_wrapper.cpp
│   │   │   ├── mysql_native_resultset_wrapper.h
│   │   │   ├── mysql_native_statement_wrapper.cpp
│   │   │   ├── mysql_native_statement_wrapper.h
│   │   │   ├── mysql_private_iface.h
│   │   │   ├── native_connection_wrapper.h
│   │   │   ├── native_driver_wrapper.h
│   │   │   ├── native_resultset_wrapper.h
│   │   │   └── native_statement_wrapper.h
│   │   └── version_info.h.cmake
│   ├── examples
│   │   ├── CMakeLists.txt
│   │   ├── README
│   │   ├── connect.cpp
│   │   ├── connection_meta_schemaobj.cpp
│   │   ├── cpp_trace_analyzer.php
│   │   ├── debug_output.cpp
│   │   ├── dynamic_load.cpp
│   │   ├── examples.h
│   │   ├── exceptions.cpp
│   │   ├── prepared_statement.cpp
│   │   ├── pthreads.cpp
│   │   ├── resultset.cpp
│   │   ├── resultset_binary.cpp
│   │   ├── resultset_meta.cpp
│   │   ├── resultset_types.cpp
│   │   ├── standalone_example.cpp
│   │   ├── standalone_example_docs1.cpp
│   │   ├── standalone_example_docs2.cpp
│   │   └── statement.cpp
│   ├── extract_build_info.php
│   ├── test
│   │   ├── CJUnitTestsPort
│   │   │   ├── BaseTestFixture.cpp
│   │   │   ├── BaseTestFixture.h
│   │   │   ├── CMakeLists.txt
│   │   │   ├── README
│   │   │   ├── ccpptests.cpp
│   │   │   ├── compliance
│   │   │   │   ├── ConnectionTest.cpp
│   │   │   │   ├── ConnectionTest.h
│   │   │   │   ├── DatabaseMetaDataTest.cpp
│   │   │   │   ├── DatabaseMetaDataTest.h
│   │   │   │   ├── PreparedStatementTest.cpp
│   │   │   │   ├── PreparedStatementTest.h
│   │   │   │   ├── ResultSetMetadataTest.cpp
│   │   │   │   ├── ResultSetMetadataTest.h
│   │   │   │   ├── StatementTest.cpp
│   │   │   │   ├── StatementTest.h
│   │   │   │   ├── UnbufferedRsStmtTest.cpp
│   │   │   │   └── UnbufferedRsStmtTest.h
│   │   │   ├── cts.sql
│   │   │   ├── regression
│   │   │   │   ├── BlobRegressionTest.cpp
│   │   │   │   ├── BlobRegressionTest.h
│   │   │   │   ├── EscapeProcessorRegressionTest.cpp
│   │   │   │   ├── EscapeProcessorRegressionTest.h
│   │   │   │   ├── PreparedStatementRegressionTest.cpp
│   │   │   │   ├── PreparedStatementRegressionTest.h
│   │   │   │   ├── SubqueriesRegressionTest.cpp
│   │   │   │   └── SubqueriesRegressionTest.h
│   │   │   ├── resources.cpp
│   │   │   ├── resources.h
│   │   │   ├── simple
│   │   │   │   ├── BlobTest.cpp
│   │   │   │   ├── BlobTest.h
│   │   │   │   ├── TransactionTest.cpp
│   │   │   │   └── TransactionTest.h
│   │   │   └── sql.properties
│   │   ├── CMakeLists.txt
│   │   ├── README
│   │   ├── common
│   │   │   ├── ccppTypes.h
│   │   │   ├── file.cpp
│   │   │   ├── file.h
│   │   │   ├── singleton.h
│   │   │   ├── stringutils.cpp
│   │   │   └── stringutils.h
│   │   ├── driver_test.cpp
│   │   ├── framework
│   │   │   ├── CMakeLists.txt
│   │   │   ├── framework.h
│   │   │   ├── start_options.cpp
│   │   │   ├── start_options.h
│   │   │   ├── test_asserts.cpp
│   │   │   ├── test_asserts.h
│   │   │   ├── test_case.h
│   │   │   ├── test_container.cpp
│   │   │   ├── test_container.h
│   │   │   ├── test_factory.cpp
│   │   │   ├── test_factory.h
│   │   │   ├── test_filter.cpp
│   │   │   ├── test_filter.h
│   │   │   ├── test_listener.cpp
│   │   │   ├── test_listener.h
│   │   │   ├── test_outputter.h
│   │   │   ├── test_runner.cpp
│   │   │   ├── test_runner.h
│   │   │   ├── test_suite.cpp
│   │   │   ├── test_suite.h
│   │   │   ├── test_tapOutputter.cpp
│   │   │   ├── test_tapOutputter.h
│   │   │   ├── test_timer.cpp
│   │   │   └── test_timer.h
│   │   ├── static_test.cpp
│   │   ├── test_common.cpp
│   │   └── unit
│   │       ├── CMakeLists.txt
│   │       ├── README
│   │       ├── bugs
│   │       │   ├── CMakeLists.txt
│   │       │   ├── bugs.cpp
│   │       │   └── bugs.h
│   │       ├── classes
│   │       │   ├── CMakeLists.txt
│   │       │   ├── art_resultset.cpp
│   │       │   ├── art_resultset.h
│   │       │   ├── connection.cpp
│   │       │   ├── connection.h
│   │       │   ├── connectionmetadata.cpp
│   │       │   ├── connectionmetadata.h
│   │       │   ├── parametermetadata.cpp
│   │       │   ├── parametermetadata.h
│   │       │   ├── preparedstatement.cpp
│   │       │   ├── preparedstatement.h
│   │       │   ├── resultset.cpp
│   │       │   ├── resultset.h
│   │       │   ├── resultsetmetadata.cpp
│   │       │   ├── resultsetmetadata.h
│   │       │   ├── savepoint.cpp
│   │       │   ├── savepoint.h
│   │       │   ├── statement.cpp
│   │       │   ├── statement.h
│   │       │   ├── uri.cpp
│   │       │   ├── uri.h
│   │       │   ├── variant.cpp
│   │       │   └── variant.h
│   │       ├── example
│   │       │   ├── CMakeLists.txt
│   │       │   ├── example.cpp
│   │       │   └── example.h
│   │       ├── main.cpp
│   │       ├── performance
│   │       │   ├── CMakeLists.txt
│   │       │   ├── perf_statement.cpp
│   │       │   └── perf_statement.h
│   │       ├── template_bug_group
│   │       │   ├── CMakeLists.txt
│   │       │   ├── bug123.cpp
│   │       │   ├── bug123.h
│   │       │   ├── bug456.cpp
│   │       │   └── bug456.h
│   │       ├── unit_fixture.cpp
│   │       └── unit_fixture.h
│   ├── thread
│   │   ├── CMakeLists.txt
│   │   ├── my_no_pthread.h
│   │   ├── my_pthread.c
│   │   ├── my_pthread.h
│   │   ├── my_thr_init.c
│   │   ├── my_wincond.c
│   │   ├── my_winthread.c
│   │   ├── thr_alarm.h
│   │   └── thr_mutex.c
│   └── win
│       ├── Bitmaps
│       │   ├── MySQLConnector.ico
│       │   ├── New.ico
│       │   ├── Up.ico
│       │   ├── bannrbmp.bmp
│       │   ├── dlgbmp.bmp
│       │   ├── exclamic.ico
│       │   └── info.ico
│       ├── CMakeLists.txt
│       ├── mysql-conncpp-msi-arpprops.xml
│       ├── mysql-conncpp-msi-template.xml.in
│       └── mysql-conncpp-msi-ui.xml
└── 好例子网connectorc 库源代码_mysql-connector-c -1.1.6.zip

22 directories, 243 files


标签: Connect 源代码 c++ EC co

实例下载地址

connector/c++库源代码

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警