Home Database Mysql Tutorial MySQL数据库接口在VC中的实际应用有哪些?

MySQL数据库接口在VC中的实际应用有哪些?

Jun 07, 2016 pm 04:11 PM
mysql Which actual application interface database

MySQL(和PHP搭配之最佳组合)数据库作为一种网络数据库性能十分出色,但其在应用软件中使用较少。本文将主要探讨MySQL数据库接口 (ODBC API和C API)在VC中的应用,并且形成一个类用以封装C API数据库接口的功能。 利用MySQL(和PHP搭配之最佳组合)自带的C AP

MySQL(和PHP搭配之最佳组合)数据库作为一种网络数据库性能十分出色,但其在应用软件中使用较少。本文将主要探讨MySQL数据库接口 ——(ODBC API和C API)在VC中的应用,并且形成一个类用以封装C API数据库接口的功能。

利用MySQL(和PHP搭配之最佳组合)自带的C API函数实现数据库功能调用

由于各个数据库之间的差异,它们所提供的数据库功能也就各有不同。这样,通过ODBC API就不可能完全拥有所有的数据库功能,因而影响了程序对数据库的控制功能,也就不能充分发挥数据库的能力。并且这种统一的接口还是以损失效能为前提的,这就使数据库操作时间延长。所以,为了解决以上问题,MySQL(和PHP搭配之最佳组合)的制造商在提供ODBC驱动程序的基础上,还提供了各种编程环境下的API,其中包括C API。这些API函数很显然能尽可能地发挥数据库的能力,并减少数据库操作的延长时间,但却使程序的通用性受到严重影响。

MySQL(和PHP搭配之最佳组合)提供了一套C API函数,它由一组函数以及一组用于函数的数据类型组成,这些函数与MySQL(和PHP搭配之最佳组合) 服务器进行通信并访问MySQL数据库接口,可以直接操控数据库,因而显著地提高了操控效能。

C API数据类型包括:MySQL(和PHP搭配之最佳组合)(数据库连接句柄)、MySQL(和PHP搭配之最佳组合)_RES(查询返回结果集)、MySQL(和PHP搭配之最佳组合)_ROW(行集)、MySQL(和PHP搭配之最佳组合)_FIELD(字段信息)、MySQL(和PHP搭配之最佳组合)_FIELD_OFFSET(字段表的偏移量)、my_ulonglong(自定义的无符号整型数)等;

C API提供的函数包括:MySQL(和PHP搭配之最佳组合)_close()、MySQL(和PHP搭配之最佳组合)_connect()、MySQL(和PHP搭配之最佳组合)_query()、MySQL(和PHP搭配之最佳组合)_store_result()、MySQL(和PHP搭配之最佳组合)_init()等,其中MySQL(和PHP搭配之最佳组合)_query()最为重要,能完成绝大部分的数据库操控。

下面将具体讨论数据库操作类CDatabase通过C API的实现以及在VC中的应用。

查看max_connections、max_connections的办法见后。

如果 threads_connected == max_connections 时,数据库系统就不能提供更多的连接数了,这时,如果程序还想新建连接线程,数据库系统就会拒绝,如果程序没做太多的错误处理,就会出现类似强坛的报错信息。

因为创建和销毁数据库的连接,都会消耗系统的资源。而且为了避免在同一时间同时打开过多的连接线程,现在编程一般都使用所谓数据库连接池技术。

但数据库连接池技术,并不能避免程序错误导致连接资源消耗殆尽。

这种情况通常发生在程序未能及时释放数据库连接资源或其他原因造成数据库连接资源不能释放,但强坛系统估计不会发生这种低级的编程错误。

该错误的简便的检查办法是,在刷新强坛页面时,不断监视threads_connected的变化。如果max_connections足够大,而threads_connected值不断增加以至达到max_connections,那么,就应该检查程序了。当然,如果采用数据库连接池技术,threads_connected增长到数据库连接池的最大连接线程数时,就不再增长了。

从强坛出错的情况看,更大的可能性是数据库系统没能进行适当地配置。下面提出一点建议。供参考

让你们的工程师把MySQL(和PHP搭配之最佳组合)的最大允许连接数从默认的100调成32000。这就不会老出现连接过多的问题了。

查看max_connections

进入MySQL(和PHP搭配之最佳组合),用命令:show variables

查看MySQL数据库接口最大可连接数的变量值:max_connections

查看threads_connected

进入MySQL(和PHP搭配之最佳组合),用命令:show status

查看当前活动的连接线程变量值:threads_connected

设置max_connections

设置办法是在my.cnf文件中,添加下面的最后红色的一行:

<ol class="dp-xml">
<li class="alt"><span><span>[MySQL(和PHP搭配之最佳组合)d]   </span></span></li>
<li>
<span class="attribute">port</span><span>=</span><span class="attribute-value">3306</span><span>   </span>
</li>
<li class="alt">
<span>#</span><span class="attribute">socket</span><span>=</span><span class="attribute-value">MySQL</span><span>(和PHP搭配之最佳组合)   </span>
</li>
<li><span>skip-locking   </span></li>
<li class="alt">
<span class="attribute">set-variable</span><span> = </span><span class="attribute-value">key_buffer</span><span>=16K   </span>
</li>
<li>
<span class="attribute">set-variable</span><span> = </span><span class="attribute-value">max_allowed_packet</span><span>=1M   </span>
</li>
<li class="alt">
<span class="attribute">set-variable</span><span> = </span><span class="attribute-value">thread_stack</span><span>=64K   </span>
</li>
<li>
<span class="attribute">set-variable</span><span> = </span><span class="attribute-value">table_cache</span><span>=4   </span>
</li>
<li class="alt">
<span class="attribute">set-variable</span><span> = </span><span class="attribute-value">sort_buffer</span><span>=64K   </span>
</li>
<li>
<span class="attribute">set-variable</span><span> = </span><span class="attribute-value">net_buffer_length</span><span>=2K   </span>
</li>
<li class="alt">
<span class="attribute">set-variable</span><span> = </span><span class="attribute-value">max_connections</span><span>=32000  </span>
</li>
</ol>
Copy after login

修改完毕后,重启MySQL(和PHP搭配之最佳组合)即可。当然,为了确保设置正确,应该查看一下max_connections。

注意:

1、虽然这里写的32000。但实际MySQL(和PHP搭配之最佳组合)服务器允许的最大连接数16384;

2、除max_connections外,上述其他配置应该根据你们系统自身需要进行配置,不必拘泥;

3、添加了最大允许连接数,对系统消耗增加不大。

4、如果你的MySQL(和PHP搭配之最佳组合)用的是my.ini作配置文件,设置类似,但设置的格式要稍作变通。


Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to optimize MySQL query performance in PHP? How to optimize MySQL query performance in PHP? Jun 03, 2024 pm 08:11 PM

MySQL query performance can be optimized by building indexes that reduce lookup time from linear complexity to logarithmic complexity. Use PreparedStatements to prevent SQL injection and improve query performance. Limit query results and reduce the amount of data processed by the server. Optimize join queries, including using appropriate join types, creating indexes, and considering using subqueries. Analyze queries to identify bottlenecks; use caching to reduce database load; optimize PHP code to minimize overhead.

How to use MySQL backup and restore in PHP? How to use MySQL backup and restore in PHP? Jun 03, 2024 pm 12:19 PM

Backing up and restoring a MySQL database in PHP can be achieved by following these steps: Back up the database: Use the mysqldump command to dump the database into a SQL file. Restore database: Use the mysql command to restore the database from SQL files.

How to fix mysql_native_password not loaded errors on MySQL 8.4 How to fix mysql_native_password not loaded errors on MySQL 8.4 Dec 09, 2024 am 11:42 AM

One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the &quot;MySQL Native Password&quot; plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app

How to create a MySQL table using PHP? How to create a MySQL table using PHP? Jun 04, 2024 pm 01:57 PM

Creating a MySQL table using PHP requires the following steps: Connect to the database. Create the database if it does not exist. Select a database. Create table. Execute the query. Close the connection.

iOS 18 adds a new 'Recovered' album function to retrieve lost or damaged photos iOS 18 adds a new 'Recovered' album function to retrieve lost or damaged photos Jul 18, 2024 am 05:48 AM

Apple's latest releases of iOS18, iPadOS18 and macOS Sequoia systems have added an important feature to the Photos application, designed to help users easily recover photos and videos lost or damaged due to various reasons. The new feature introduces an album called "Recovered" in the Tools section of the Photos app that will automatically appear when a user has pictures or videos on their device that are not part of their photo library. The emergence of the "Recovered" album provides a solution for photos and videos lost due to database corruption, the camera application not saving to the photo library correctly, or a third-party application managing the photo library. Users only need a few simple steps

Detailed tutorial on establishing a database connection using MySQLi in PHP Detailed tutorial on establishing a database connection using MySQLi in PHP Jun 04, 2024 pm 01:42 PM

How to use MySQLi to establish a database connection in PHP: Include MySQLi extension (require_once) Create connection function (functionconnect_to_db) Call connection function ($conn=connect_to_db()) Execute query ($result=$conn->query()) Close connection ( $conn->close())

How to handle database connection errors in PHP How to handle database connection errors in PHP Jun 05, 2024 pm 02:16 PM

To handle database connection errors in PHP, you can use the following steps: Use mysqli_connect_errno() to obtain the error code. Use mysqli_connect_error() to get the error message. By capturing and logging these error messages, database connection issues can be easily identified and resolved, ensuring the smooth running of your application.

How does Go WebSocket integrate with databases? How does Go WebSocket integrate with databases? Jun 05, 2024 pm 03:18 PM

How to integrate GoWebSocket with a database: Set up a database connection: Use the database/sql package to connect to the database. Store WebSocket messages to the database: Use the INSERT statement to insert the message into the database. Retrieve WebSocket messages from the database: Use the SELECT statement to retrieve messages from the database.

See all articles