没有合适的资源?快使用搜索试试~ 我知道了~
首页MySQL 5.6 教程与参考手册
"MySQL 5.6 Reference Manual"
MySQL 5.6 Reference Manual 是一本全面介绍 MySQL 5.6 版本的官方文档,涵盖了从5.6.1开始的所有细节。该手册旨在为数据库管理员、开发者和其他技术专业人员提供关于MySQL 5.6功能和使用的详尽指南。
MySQL 5.6版本引入了许多重要的增强和优化,包括性能提升、存储引擎改进、安全性的加强以及新特性的添加。例如,InnoDB存储引擎在这一版本中得到了显著的性能提升,支持更高的并发处理能力和更快的数据读写速度。此外,分区功能也得到了扩展,使得大型表的管理和查询更为高效。
文档中的"Getting Started"章节为初学者提供了入门指导,介绍了在各种操作系统(如Linux/Unix、MacOS X、Windows)上安装MySQL 5.6的步骤。对于管理员,有详细的服务器选项和变量参考,帮助他们配置和优化服务器环境。开发者可以找到SQL语法的全面概述,学习如何编写高效的查询语句。
在HA(高可用性)和可扩展性方面,MySQL 5.6提供了多种解决方案,如复制技术的改进和新的连接器支持。例如,MySQL Cluster在5.6版本中未被直接支持,但用户可以参考其他版本的MySQL Cluster NDB文档来了解相关技术。此外,手册还提到了MySQL与DRBD(分布式冗余磁盘阵列)的集成,以实现数据的高可用性和灾难恢复。
"SQLSyntax"部分详细阐述了MySQL的SQL语法,包括DML(数据操作语言)、DDL(数据定义语言)和DCL(数据控制语言)。同时,存储过程和触发器等数据库对象的创建和管理也在这部分得到详细解释。
"Connector"章节介绍了不同编程语言(如Java的Connector/J、.NET的Connector/NET)与MySQL的接口,帮助开发者在各自的应用环境中与数据库进行交互。
"Upgrading"章节则为从旧版本升级到MySQL 5.6的用户提供指导,详细说明了升级过程和可能遇到的问题,以及不同版本之间的兼容性和变化。
MySQL 5.6 Reference Manual 是一个综合性的技术资源,涵盖了从安装、配置、开发到维护MySQL 5.6系统的全方位知识,是所有MySQL 5.6用户和开发者的必备参考资料。
16.4.6. How to Report Replication Bugs or Problems ....................................................................1729
17. Partitioning .................................................................................................................................1730
17.1. Overview of Partitioning in MySQL .........................................................................................1731
17.2. Partition Types ...................................................................................................................1733
17.2.1. RANGE Partitioning ...................................................................................................1734
17.2.2. LIST Partitioning .....................................................................................................1737
17.2.3. COLUMNS Partitioning ...............................................................................................1739
17.2.4. HASH Partitioning .....................................................................................................1745
17.2.5. KEY Partitioning ......................................................................................................1748
17.2.6. Subpartitioning ........................................................................................................1749
17.2.7. How MySQL Partitioning Handles NULL .........................................................................1752
17.3. Partition Management ..........................................................................................................1755
17.3.1. Management of RANGE and LIST Partitions .....................................................................1756
17.3.2. Management of HASH and KEY Partitions ........................................................................1760
17.3.3. Exchanging Partitions and Subpartitions with Tables ............................................................1761
17.3.4. Maintenance of Partitions ............................................................................................1764
17.3.5. Obtaining Information About Partitions ...........................................................................1765
17.4. Partition Pruning ................................................................................................................1767
17.5. Restrictions and Limitations on Partitioning ................................................................................1770
17.5.1. Partitioning Keys, Primary Keys, and Unique Keys .............................................................1774
17.5.2. Partitioning Limitations Relating to Storage Engines ............................................................1777
17.5.3. Partitioning Limitations Relating to Functions ...................................................................1777
18. Stored Programs and Views ..............................................................................................................1779
18.1. Defining Stored Programs ......................................................................................................1779
18.2. Using Stored Routines (Procedures and Functions) ........................................................................1780
18.2.1. Stored Routine Syntax ................................................................................................1781
18.2.2. Stored Routines and MySQL Privileges ...........................................................................1781
18.2.3. Stored Routine Metadata .............................................................................................1782
18.2.4. Stored Procedures, Functions, Triggers, and LAST_INSERT_ID() ........................................1782
18.3. Using Triggers ...................................................................................................................1782
18.3.1. Trigger Syntax .........................................................................................................1783
18.3.2. Trigger Metadata ......................................................................................................1784
18.4. Using the Event Scheduler .....................................................................................................1785
18.4.1. Event Scheduler Overview ..........................................................................................1785
18.4.2. Event Scheduler Configuration .....................................................................................1786
18.4.3. Event Syntax ...........................................................................................................1788
18.4.4. Event Metadata ........................................................................................................1788
18.4.5. Event Scheduler Status ...............................................................................................1789
18.4.6. The Event Scheduler and MySQL Privileges .....................................................................1789
18.5. Using Views .....................................................................................................................1791
18.5.1. View Syntax ...........................................................................................................1792
18.5.2. View Processing Algorithms ........................................................................................1792
18.5.3. Updatable and Insertable Views ....................................................................................1793
18.5.4. View Metadata ........................................................................................................1795
18.6. Access Control for Stored Programs and Views ............................................................................1795
18.7. Binary Logging of Stored Programs ..........................................................................................1796
19. INFORMATION_SCHEMA Tables ......................................................................................................1802
19.1. The INFORMATION_SCHEMA SCHEMATA Table .......................................................................1803
19.2. The INFORMATION_SCHEMA TABLES Table ...........................................................................1804
19.3. The INFORMATION_SCHEMA COLUMNS Table .........................................................................1805
19.4. The INFORMATION_SCHEMA STATISTICS Table ....................................................................1806
19.5. The INFORMATION_SCHEMA USER_PRIVILEGES Table ...........................................................1806
19.6. The INFORMATION_SCHEMA SCHEMA_PRIVILEGES Table .......................................................1807
19.7. The INFORMATION_SCHEMA TABLE_PRIVILEGES Table .........................................................1807
19.8. The INFORMATION_SCHEMA COLUMN_PRIVILEGES Table .......................................................1808
19.9. The INFORMATION_SCHEMA CHARACTER_SETS Table .............................................................1808
19.10. The INFORMATION_SCHEMA COLLATIONS Table ..................................................................1809
19.11. The INFORMATION_SCHEMA COLLATION_CHARACTER_SET_APPLICABILITY Table ..................1809
19.12. The INFORMATION_SCHEMA TABLE_CONSTRAINTS Table ......................................................1809
19.13. The INFORMATION_SCHEMA KEY_COLUMN_USAGE Table ........................................................1810
19.14. The INFORMATION_SCHEMA ROUTINES Table ......................................................................1811
19.15. The INFORMATION_SCHEMA VIEWS Table ...........................................................................1812
19.16. The INFORMATION_SCHEMA TRIGGERS Table ......................................................................1813
19.17. The INFORMATION_SCHEMA PLUGINS Table ........................................................................1814
19.18. The INFORMATION_SCHEMA ENGINES Table ........................................................................1815
MySQL 5.6 Reference Manual
xvi
19.19. The INFORMATION_SCHEMA PARTITIONS Table ..................................................................1816
19.20. The INFORMATION_SCHEMA EVENTS Table ..........................................................................1818
19.21. The INFORMATION_SCHEMA FILES Table ...........................................................................1821
19.22. The INFORMATION_SCHEMA TABLESPACES Table .................................................................1822
19.23. The INFORMATION_SCHEMA PROCESSLIST Table .................................................................1822
19.24. The INFORMATION_SCHEMA REFERENTIAL_CONSTRAINTS Table ...........................................1823
19.25. The INFORMATION_SCHEMA GLOBAL_STATUS and SESSION_STATUS Tables .............................1824
19.26. The INFORMATION_SCHEMA GLOBAL_VARIABLES and SESSION_VARIABLES Tables ..................1824
19.27. The INFORMATION_SCHEMA PARAMETERS Table ..................................................................1824
19.28. The INFORMATION_SCHEMA PROFILING Table ....................................................................1825
19.29. Other INFORMATION_SCHEMA Tables ...................................................................................1826
19.30. Extensions to SHOW Statements .............................................................................................1826
20. MySQL Performance Schema ...........................................................................................................1828
20.1. Performance Schema Quick Start .............................................................................................1829
20.2. Performance Schema Configuration ..........................................................................................1833
20.2.1. Performance Schema Build Configuration ........................................................................1833
20.2.2. Performance Schema Startup and Runtime Configuration ......................................................1834
20.2.3. Event Collection Pre-Filtering and Post-Filtering ................................................................1835
20.3. Performance Schema Status Monitoring .....................................................................................1838
20.4. Performance Schema Event Timing ..........................................................................................1841
20.5. Performance Schema Event Instrument Naming Conventions ............................................................1842
20.6. Performance Schema Atom and Molecule Events ..........................................................................1844
20.7. Performance Schema Table General Characteristics .......................................................................1844
20.8. Performance Schema Table Descriptions ....................................................................................1844
20.8.1. Performance Schema Setup Tables .................................................................................1845
20.8.2. Performance Schema Current-Events Table .......................................................................1846
20.8.3. Performance Schema History Tables ...............................................................................1848
20.8.4. Performance Schema Summary Tables ............................................................................1848
20.8.5. Performance Schema Instance Tables ..............................................................................1850
20.8.6. Performance Schema Miscellaneous Tables ......................................................................1851
20.9. Performance Schema and Plugins .............................................................................................1852
20.10. Performance Schema System Variables ....................................................................................1853
20.11. Performance Schema Status Variables ......................................................................................1856
20.12. Using Performance Schema to Diagnose Problems .......................................................................1857
21. Connectors and APIs ......................................................................................................................1858
21.1. MySQL Connector/ODBC .....................................................................................................1860
21.1.1. Connector/ODBC Versions ..........................................................................................1861
21.1.2. Connector/ODBC Introduction ......................................................................................1861
21.1.3. Connector/ODBC Installation .......................................................................................1864
21.1.4. Connector/ODBC Configuration ....................................................................................1884
21.1.5. Connector/ODBC Examples .........................................................................................1905
21.1.6. Connector/ODBC Reference ........................................................................................1930
21.1.7. Connector/ODBC Notes and Tips ..................................................................................1935
21.1.8. Connector/ODBC Support ...........................................................................................1944
21.2. MySQL Connector/NET .......................................................................................................1945
21.2.1. Connector/NET Versions ............................................................................................1946
21.2.2. Connector/NET Installation .........................................................................................1947
21.2.3. Connector/NET Visual Studio Integration .........................................................................1955
21.2.4. Connector/NET Tutorials ............................................................................................1979
21.2.5. Connector/NET Programming ......................................................................................2023
21.2.6. Connector/NET Connection String Options Reference ..........................................................2050
21.2.7. Connector/NET API Reference .....................................................................................2054
21.2.8. Connector/NET Support .............................................................................................2155
21.2.9. Connector/NET FAQ .................................................................................................2156
21.3. MySQL Connector/J ............................................................................................................2157
21.3.1. Connector/J Versions .................................................................................................2158
21.3.2. Connector/J Installation ..............................................................................................2159
21.3.3. Connector/J Examples ................................................................................................2163
21.3.4. Connector/J (JDBC) Reference .....................................................................................2163
21.3.5. Connector/J Notes and Tips .........................................................................................2195
21.3.6. Connector/J Support ..................................................................................................2221
21.4. MySQL Connector/MXJ .......................................................................................................2222
21.4.1. Connector/MXJ Overview ...........................................................................................2223
21.4.2. Connector/MXJ Versions ............................................................................................2224
21.4.3. Connector/MXJ Installation .........................................................................................2224
MySQL 5.6 Reference Manual
xvii
21.4.4. Connector/MXJ Configuration ......................................................................................2228
21.4.5. Connector/MXJ Reference ...........................................................................................2231
21.4.6. Connector/MXJ Notes and Tips .....................................................................................2232
21.4.7. Connector/MXJ Samples .............................................................................................2236
21.4.8. Connector/MXJ Support .............................................................................................2239
21.5. MySQL Connector/C++ ........................................................................................................2240
21.5.1. MySQL Connector/C++ Binary Installation ......................................................................2243
21.5.2. MySQL Connector/C++ Source Installation ......................................................................2246
21.5.3. MySQL Connector/C++ Building Windows applications with Microsoft Visual Studio ...................2251
21.5.4. MySQL Connector/C++ Building Linux applications with NetBeans .........................................2264
21.5.5. MySQL Connector/C++ Getting Started: Usage Examples .....................................................2269
21.5.6. MySQL Connector/C++ Tutorials ..................................................................................2274
21.5.7. MySQL Connector/C++ Debug Tracing ...........................................................................2281
21.5.8. MySQL Connector/C++ Usage Notes .............................................................................2282
21.5.9. MySQL Connector/C++ Known Bugs and Issues ................................................................2285
21.5.10. MySQL Connector/C++ Feature requests ........................................................................2285
21.5.11. MySQL Connector/C++ Support ..................................................................................2286
21.5.12. MySQL Connector/C++ FAQ .....................................................................................2286
21.6. MySQL Connector/C ...........................................................................................................2287
21.6.1. Building MySQL Connector/C from the Source Code ..........................................................2287
21.6.2. Testing MySQL Connector/C .......................................................................................2289
21.6.3. MySQL Connector/C FAQ ..........................................................................................2290
21.7. MySQL Connector/OpenOffice.org ..........................................................................................2290
21.7.1. Installation .............................................................................................................2291
21.7.2. Getting Started: Connecting to MySQL ...........................................................................2292
21.7.3. Getting Started: Usage Examples ...................................................................................2298
21.7.4. References .............................................................................................................2298
21.7.5. Known Bugs ...........................................................................................................2298
21.7.6. Contact .................................................................................................................2298
21.8. libmysqld, the Embedded MySQL Server Library .........................................................................2299
21.8.1. Compiling Programs with libmysqld ...........................................................................2299
21.8.2. Restrictions When Using the Embedded MySQL Server .......................................................2300
21.8.3. Options with the Embedded Server .................................................................................2300
21.8.4. Embedded Server Examples .........................................................................................2300
21.8.5. Licensing the Embedded Server ....................................................................................2303
21.9. MySQL C API ...................................................................................................................2303
21.9.1. C API Data Structures ................................................................................................2304
21.9.2. C API Function Overview ...........................................................................................2308
21.9.3. C API Function Descriptions ........................................................................................2311
21.9.4. C API Prepared Statements ..........................................................................................2354
21.9.5. C API Prepared Statement Data Structures ........................................................................2355
21.9.6. C API Prepared Statement Function Overview ...................................................................2360
21.9.7. C API Prepared Statement Function Descriptions ................................................................2362
21.9.8. C API Threaded Function Descriptions ............................................................................2382
21.9.9. C API Embedded Server Function Descriptions ..................................................................2383
21.9.10. Common Questions and Problems When Using the C API ....................................................2384
21.9.11. Controlling Automatic Reconnection Behavior .................................................................2385
21.9.12. C API Support for Multiple Statement Execution ..............................................................2386
21.9.13. C API Prepared Statement Problems .............................................................................2388
21.9.14. C API Prepared Statement Handling of Date and Time Values ...............................................2388
21.9.15. C API Support for Prepared CALL Statements ..................................................................2389
21.9.16. Building Client Programs ..........................................................................................2393
21.10. MySQL PHP API ..............................................................................................................2394
21.10.1. MySQL ...............................................................................................................2395
21.10.2. MySQL Improved Extension (Mysqli) .........................................................................2455
21.10.3. MySQL Native Driver (Mysqlnd) ...............................................................................2627
21.10.4. MySQL Functions (PDO_MYSQL) ..............................................................................2644
21.10.5. Connector/PHP ......................................................................................................2645
21.10.6. Common Problems with MySQL and PHP ......................................................................2646
21.10.7. Enabling Both mysql and mysqli in PHP ....................................................................2646
21.11. MySQL Perl API ...............................................................................................................2646
21.12. MySQL Python API ...........................................................................................................2647
21.13. MySQL Ruby APIs ............................................................................................................2647
21.13.1. The MySQL/Ruby API .............................................................................................2647
21.13.2. The Ruby/MySQL API .............................................................................................2647
MySQL 5.6 Reference Manual
xviii
21.14. MySQL Tcl API ...............................................................................................................2647
21.15. MySQL Eiffel Wrapper .......................................................................................................2648
22. Extending MySQL ........................................................................................................................2649
22.1. MySQL Internals ................................................................................................................2649
22.1.1. MySQL Threads .......................................................................................................2649
22.1.2. MySQL Test Suite ....................................................................................................2650
22.2. The MySQL Plugin API ........................................................................................................2650
22.2.1. Plugin API Characteristics ...........................................................................................2650
22.2.2. Plugin API Components .............................................................................................2651
22.2.3. Types of Plugins ......................................................................................................2652
22.2.4. Plugin Data Structures and Functions ..............................................................................2653
22.2.5. Writing Plugins ........................................................................................................2662
22.2.6. MySQL Services for Plugins ........................................................................................2672
22.3. Adding New Functions to MySQL ...........................................................................................2673
22.3.1. Features of the User-Defined Function Interface .................................................................2674
22.3.2. Adding a New User-Defined Function .............................................................................2674
22.3.3. Adding a New Native Function .....................................................................................2683
22.4. Adding New Procedures to MySQL ..........................................................................................2684
22.4.1. PROCEDURE ANALYSE ............................................................................................2684
22.4.2. Writing a Procedure ..................................................................................................2684
22.5. Debugging and Porting MySQL ..............................................................................................2685
22.5.1. Debugging a MySQL Server ........................................................................................2686
22.5.2. Debugging a MySQL Client .........................................................................................2691
22.5.3. The DBUG Package ..................................................................................................2691
22.5.4. Comments about RTS Threads ......................................................................................2692
22.5.5. Differences Between Thread Packages ............................................................................2693
A. MySQL 5.6 Frequently Asked Questions ...............................................................................................2695
A.1. MySQL 5.6 FAQ: General ......................................................................................................2695
A.2. MySQL 5.6 FAQ: Storage Engines ............................................................................................2696
A.3. MySQL 5.6 FAQ: Server SQL Mode .........................................................................................2697
A.4. MySQL 5.6 FAQ: Stored Procedures and Functions ........................................................................2698
A.5. MySQL 5.6 FAQ: Triggers .....................................................................................................2701
A.6. MySQL 5.6 FAQ: Views ........................................................................................................2703
A.7. MySQL 5.6 FAQ: INFORMATION_SCHEMA ...............................................................................2704
A.8. MySQL 5.6 FAQ: Migration ...................................................................................................2705
A.9. MySQL 5.6 FAQ: Security .....................................................................................................2705
A.10. MySQL 5.6 FAQ: MySQL Cluster ..........................................................................................2706
A.11. MySQL 5.6 FAQ: MySQL Chinese, Japanese, and Korean Character Sets ............................................2707
A.12. MySQL 5.6 FAQ: Connectors & APIs ......................................................................................2717
A.13. MySQL 5.6 FAQ: Replication ................................................................................................2717
A.14. MySQL 5.6 FAQ: MySQL, DRBD, and Heartbeat ........................................................................2717
A.14.1. Distributed Replicated Block Device (DRBD) ...................................................................2717
A.14.2. Linux Heartbeat .......................................................................................................2718
A.14.3. DRBD Architecture ..................................................................................................2718
A.14.4. DRBD and MySQL Replication ....................................................................................2719
A.14.5. DRBD and File Systems ............................................................................................2720
A.14.6. DRBD and LVM .....................................................................................................2721
A.14.7. DRBD and Virtualization ...........................................................................................2721
A.14.8. DRBD and Security ..................................................................................................2721
A.14.9. DRBD and System Requirements ..................................................................................2722
A.14.10. DBRD and Support and Consulting ..............................................................................2723
B. Errors, Error Codes, and Common Problems ...........................................................................................2725
B.1. Sources of Error Information ...................................................................................................2725
B.2. Types of Error Values ...........................................................................................................2725
B.3. Server Error Codes and Messages .............................................................................................2726
B.4. Client Error Codes and Messages ..............................................................................................2769
B.5. Problems and Common Errors .................................................................................................2773
B.5.1. How to Determine What Is Causing a Problem ....................................................................2773
B.5.2. Common Errors When Using MySQL Programs ..................................................................2774
B.5.3. Installation-Related Issues ............................................................................................2786
B.5.4. Administration-Related Issues .......................................................................................2787
B.5.5. Query-Related Issues ..................................................................................................2793
B.5.6. Optimizer-Related Issues .............................................................................................2799
B.5.7. Table Definition-Related Issues ......................................................................................2800
B.5.8. Known Issues in MySQL .............................................................................................2801
MySQL 5.6 Reference Manual
xix
C. MySQL Change History ...................................................................................................................2804
C.1. Changes in Release 5.6.x (Development) .....................................................................................2804
C.1.1. Changes in MySQL 5.6.0 (Not yet released Milestone 4) ........................................................2804
C.2. MySQL Enterprise Monitor Change History .................................................................................2806
C.2.1. Changes in MySQL Enterprise Monitor 2.1.2 (26 May 2010) ...................................................2806
C.2.2. Changes in MySQL Enterprise Monitor 2.1.1 (10th February 2010) ...........................................2807
C.2.3. Changes in MySQL Enterprise Monitor 2.1.0 (8th September 2009) ..........................................2809
C.3. MySQL Connector/ODBC (MyODBC) Change History ...................................................................2826
C.3.1. Changes in MySQL Connector/ODBC 5.1.7 (Not yet released) ................................................2827
C.3.2. Changes in MySQL Connector/ODBC 5.1.6 (09 November 2009) .............................................2828
C.3.3. Changes in MySQL Connector/ODBC 5.1.5 (18 August 2008) .................................................2830
C.3.4. Changes in MySQL Connector/ODBC 5.1.4 (15 April 2008) ...................................................2830
C.3.5. Changes in MySQL Connector/ODBC 5.1.3 (26 March 2008) ..................................................2831
C.3.6. Changes in MySQL Connector/ODBC 5.1.2 (13 February 2008) ...............................................2831
C.3.7. Changes in MySQL Connector/ODBC 5.1.1 (13 December 2007) .............................................2833
C.3.8. Changes in MySQL Connector/ODBC 5.1.0 (10 September 2007) .............................................2834
C.3.9. Changes in MySQL Connector/ODBC 5.0.12 (Never released) ................................................2835
C.3.10. Changes in MySQL Connector/ODBC 5.0.11 (31 January 2007) .............................................2835
C.3.11. Changes in MySQL Connector/ODBC 5.0.10 (14 December 2006) ..........................................2835
C.3.12. Changes in MySQL Connector/ODBC 5.0.9 (22 November 2006) ...........................................2836
C.3.13. Changes in MySQL Connector/ODBC 5.0.8 (17 November 2006) ...........................................2836
C.3.14. Changes in MySQL Connector/ODBC 5.0.7 (08 November 2006) ...........................................2837
C.3.15. Changes in MySQL Connector/ODBC 5.0.6 (03 November 2006) ...........................................2837
C.3.16. Changes in MySQL Connector/ODBC 5.0.5 (17 October 2006) ..............................................2838
C.3.17. Changes in Connector/ODBC 5.0.3 (Connector/ODBC 5.0 Alpha 3) (20 June 2006) ......................2838
C.3.18. Changes in Connector/ODBC 5.0.2 (Never released) ...........................................................2838
C.3.19. Changes in Connector/ODBC 5.0.1 (Connector/ODBC 5.0 Alpha 2) (05 June 2006) ......................2838
C.3.20. Changes in MySQL Connector/ODBC 3.51.28 (Not yet released) ............................................2840
C.3.21. Changes in MySQL Connector/ODBC 3.51.27 (20 November 2008) ........................................2840
C.3.22. Changes in MySQL Connector/ODBC 3.51.26 (07 July 2008) ................................................2840
C.3.23. Changes in MySQL Connector/ODBC 3.51.25 (11 April 2008) ...............................................2840
C.3.24. Changes in MySQL Connector/ODBC 3.51.24 (14 March 2008) .............................................2841
C.3.25. Changes in MySQL Connector/ODBC 3.51.23 (09 January 2008) ............................................2842
C.3.26. Changes in MySQL Connector/ODBC 3.51.22 (13 November 2007) ........................................2842
C.3.27. Changes in MySQL Connector/ODBC 3.51.21 (08 October 2007) ...........................................2843
C.3.28. Changes in MySQL Connector/ODBC 3.51.20 (10 September 2007) ........................................2843
C.3.29. Changes in MySQL Connector/ODBC 3.51.19 (10 August 2007) ............................................2843
C.3.30. Changes in MySQL Connector/ODBC 3.51.18 (08 August 2007) ............................................2844
C.3.31. Changes in MySQL Connector/ODBC 3.51.17 (14 July 2007) ................................................2845
C.3.32. Changes in MySQL Connector/ODBC 3.51.16 (14 June 2007) ...............................................2846
C.3.33. Changes in MySQL Connector/ODBC 3.51.15 (07 May 2007) ...............................................2847
C.3.34. Changes in MySQL Connector/ODBC 3.51.14 (08 March 2007) .............................................2847
C.3.35. Changes in MySQL Connector/ODBC 3.51.13 (Never released) .............................................2848
C.3.36. Changes in MySQL Connector/ODBC 3.51.12 (11 February 2005) ..........................................2848
C.3.37. Changes in MySQL Connector/ODBC 3.51.11 (28 January 2005) ............................................2848
C.4. MySQL Connector/NET Change History .....................................................................................2848
C.4.1. Changes in MySQL Connector/NET Version 6.3.x ...............................................................2849
C.4.2. Changes in MySQL Connector/NET Version 6.2.x ...............................................................2853
C.4.3. Changes in MySQL Connector/NET Version 6.1.x ...............................................................2859
C.4.4. Changes in MySQL Connector/NET Version 6.0.x ...............................................................2868
C.4.5. Changes in MySQL Connector/NET Version 5.3.x ...............................................................2877
C.4.6. Changes in MySQL Connector/NET Version 5.2.x ...............................................................2878
C.4.7. Changes in MySQL Connector/NET Version 5.1.x ...............................................................2887
C.4.8. Changes in MySQL Connector/NET Version 5.0.x ...............................................................2892
C.4.9. Changes in MySQL Connector/NET Version 1.0.x ...............................................................2898
C.4.10. Changes in MySQL Connector/NET Version 0.9.0 (30 August 2004) .......................................2906
C.4.11. Changes in MySQL Connector/NET Version 0.76 ..............................................................2909
C.4.12. Changes in MySQL Connector/NET Version 0.75 ..............................................................2910
C.4.13. Changes in MySQL Connector/NET Version 0.74 ..............................................................2910
C.4.14. Changes in MySQL Connector/NET Version 0.71 ..............................................................2912
C.4.15. Changes in MySQL Connector/NET Version 0.70 ..............................................................2912
C.4.16. Changes in MySQL Connector/NET Version 0.68 ..............................................................2914
C.4.17. Changes in MySQL Connector/NET Version 0.65 ..............................................................2914
C.4.18. Changes in MySQL Connector/NET Version 0.60 ..............................................................2915
C.4.19. Changes in MySQL Connector/NET Version 0.50 ..............................................................2915
MySQL 5.6 Reference Manual
xx
剩余3348页未读,继续阅读
178 浏览量
117 浏览量
117 浏览量
247 浏览量
118 浏览量
292 浏览量
224 浏览量
2013-11-17 上传
117 浏览量
eyulaochen
- 粉丝: 1
- 资源: 4
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 测试一下
- 倒霉熊图标下载
- SETFSB.zip
- marathon_3:免费的智力马拉松HTML-学院
- BlenderGEResourceKit:Blender游戏引擎的即用型组件集合
- winsdksetup.zip
- Aikatsu LGTM-crx插件
- dsm-htpc-群集
- simple-password-manager:Flutter制作的简单密码管理应用
- 精美蝴蝶图标下载
- 电信设备-带身份核验的物联网移动终端及人证合一核验方法.zip
- 初级java笔试题-cs-study:https://github.com/jwasham/coding-interview-universi
- MinGW压缩包省去繁琐的官网下载
- SYIPAGeneratedScript:make a ipa by script——使用脚本生成ipa包
- VTS Testing Version 2-crx插件
- 帮手
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功