MySQL在读取异常错误缓冲区方面的提升(MySQL 5.6)_MySQL
bitsCN.com
MySQL在读取异常错误缓冲区方面的提升(MySQL 5.6) 先来解释下什么是错误缓冲区?在MySQL里面, 错误缓冲区只记录最近一次出现的错误, 只要是有新的错误产生,旧的就会被覆盖掉。 所以想知道产生了什么错误, 就得在每个有可能发生错误的语句后面紧跟着"show warnings" 或者 "show errors"。 最简单的方法是把输出的结果重定向到自己定义的日志文件里面,这样就可以方便后续查看。当然如果想随时查看这些错误,我们就得通过MySQL提供的API来实现。 自从MySQL 5.6 这个革命性的版本出现后,问题得到了初步解决。虽然离我们想的还差好多。 MySQL 5.6 提供了 get diagnostic 语句来获取错误缓冲区的内容,然后把这些内容输出到不同范围域的变量里,以便我们后续灵活操作。 下来,我们就来看一个例子。 针对的表结构为:[sql] CREATE TABLE `t_datetime` ( `id` int(11) NOT NULL, `log_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `end_time` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 存储过程代码为: [sql] DELIMITER $$ USE `new_t`$$ DROP PROCEDURE IF EXISTS `sp_do_update`$$ CREATE DEFINER=`root`@`localhost` PROCEDURE `sp_do_update`( IN f_id INT, IN f_log_time VARCHAR(255), IN f_end_time VARCHAR(255) ) BEGIN DECLARE i_con1 TINYINT DEFAULT 0; DECLARE i_code CHAR(5) DEFAULT '00000'; DECLARE i_msg TEXT; DECLARE i_rows INT; DECLARE i_con1 CONDITION FOR 1048; -- 这个错误代码代表字段限制不能NULL。 DECLARE CONTINUE HANDLER FOR i_con1 BEGIN SET i_con1 = 1; get diagnostics CONDITION 1 i_code = returned_sqlstate, i_msg = message_text; END; UPDATE t_datetime SET log_time = IFNULL(f_log_time,NULL), end_time = IFNULL(f_end_time,NULL) WHERE id = f_id; IF i_con1 = 0 THEN get diagnostics i_rows = ROW_COUNT; SET @i_result = CONCAT("Update succeeded, affected ", i_rows,'.'); ELSE SET @i_result = CONCAT('Update failed, error code is 1042, related message is ',i_msg,'.'); END IF; SELECT @i_result; END$$ DELIMITER ; 我们来执行上面的存储过程,完了后,就能把错误信息保存到SESSION 变量@i_result 中。这样,方便了后期进行各种输出。 [sql] CALL sp_do_update(1,NOW(),DATE_ADD(NOW(),INTERVAL 1 DAY)); Result. Update succeeded, affected 1. CALL sp_do_update(1,NULL,NULL); Result. Update failed, error code is 1042, related message is Column 'log_time' cannot be null. 作者 四爷 bitsCN.com

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

According to news on November 14, Nvidia officially released the new H200 GPU at the "Supercomputing23" conference on the morning of the 13th local time, and updated the GH200 product line. Among them, the H200 is still built on the existing Hopper H100 architecture. However, more high-bandwidth memory (HBM3e) has been added to better handle the large data sets required to develop and implement artificial intelligence, making the overall performance of running large models improved by 60% to 90% compared to the previous generation H100. The updated GH200 will also power the next generation of AI supercomputers. In 2024, more than 200 exaflops of AI computing power will be online. H200

The function is to provide engineers with feedback on usage information and records to facilitate problem analysis (used during development); because users themselves do not often generate upload logs, they are useless to users. The logging buffer is a small, temporary area used for short-term storage of change vectors for redo logs to be written to disk. A log buffer write to disk is a batch of change vectors from multiple transactions. Even so, the change vector in the log buffer is written to disk in near real-time, and when the session issues a COMMIT statement, the log buffer write operation is performed in real time.

The characters in Love and Deep Sky have various numerical attributes. Each attribute in the game has its own specific role, and the critical hit rate attribute will affect the damage of the character, which can be said to be a very important attribute. , and the following is the method to improve this attribute, so players who want to know can take a look. Method 1. Core method for increasing the critical hit rate of Love and Deep Space. To achieve a critical hit rate of 80%, the key lies in the sum of the critical hit attributes of the six cards in your hand. Selection of Corona Cards: When selecting two Corona Cards, make sure that at least one of their core α and core β sub-attribute entries is a critical hit attribute. Advantages of the Lunar Corona Card: Not only do the Lunar Corona cards include critical hit in their basic attributes, but when they reach level 60 and have not broken through, each card can provide 4.1% of the critical hit.

As the leading short video platform in China, Douyin has attracted countless users to create and share their own video content. Many users find that their Douyin playback volume has not increased during the creative process, which makes them feel confused. So, how to improve Douyin’s low playback volume? 1. How to increase Douyin playback volume? 1. Optimize video content First, we need to pay attention to the quality of video content. A high-quality video can attract more users' attention. In terms of content creation, we can start from the following points: 1. Unique content creativity: Ensure that the video content has unique creativity and attracts users’ attention. You can start by solving user problems, sharing experiences and lessons, providing interesting entertainment, etc. 2. Professional production: invest a certain amount of time and (1) look for hot topics: tight

In the staggered fronts, players need to continuously improve their combat power to cope with more difficult battles. Only with sufficient combat power can we successfully overcome various challenges. So, how to improve your combat power in the game? The following will introduce methods to improve combat power, players can refer to it. Method 1 for improving the combat power of staggered fronts: Character level 1 and high-level strength characters can be cultivated after being drawn. 2. Afterwards, you need to participate in the main quest and dungeon quests to obtain training materials for upgrading. 3. According to the needs of the team, players need to choose output, front row and auxiliary roles to match. 2. Weapon upgrade 1. Players need to unlock weapons and obtain weapons by drawing or completing tasks. 2. Then strengthen and build it in the equipment interface, and finally match the appropriate character according to the skills.

Hello everyone, today let us talk about Linux zero-copy technology. We will use the sendfile system call as an entry point to deeply explore the basic principles of zero-copy technology. The core idea of zero-copy technology is to minimize the copying of data between memories and improve the efficiency and performance of data transmission by optimizing the data transmission path. 1. Introduction to zero-copy technology Linux zero-copy technology is a technology used to optimize data transmission. It improves the efficiency of data transmission by reducing the number of data copies between kernel mode and user mode. During the process of data transmission, it is usually necessary to copy the data from the kernel buffer to the application buffer, and then from the application buffer to the buffer of the network device before the transmission can be completed. Advantages of zero-copy technology

How to improve the response speed of PHP database search requires specific code examples. As the amount of data and users increases, improving the performance of websites or applications has become an important task for developers. For websites or applications that use PHP as the backend, database search is one of the common performance bottlenecks. This article will introduce some techniques for optimizing database searches, while providing specific PHP code examples. Database Design and Index Optimization Before optimizing database search performance, you first need to ensure that the database design and indexing are appropriate.

In-depth analysis of is and where selectors: improving the level of CSS programming Introduction: In the process of CSS programming, selectors are an essential element. They allow us to select and style elements in an HTML document based on specific criteria. In this article, we will take a deep dive into two commonly used selectors namely: is selector and where selector. By understanding their working principles and usage scenarios, we can greatly improve the level of CSS programming. 1. is selector is selector is a very powerful choice
