In-depth explanation of the failure of writing SQL containing English single quotation marks "''"

In-depth explanation of the failure of writing SQL containing English single quotation marks "''"

I have encountered a problem. When testing the editing of information, if the edited content contains a single quote ('), it will fail to be written to the MySQL database. Use the following code to print the error:

if (!this->m_sql_query.prepare(update_string))
{
printf("exec fail—>%s\n", this->m_sql_query.lastError().text().toStdString().c_str());
}
if (!this->m_sql_query.exec())
{
printf("exec fail—>%s\n", this->m_sql_query.lastError().text().toStdString().c_str());
}

The printed result is: exec fail—>syntax error unable to execute statement

Please refer to the following relevant information:


insert image description hereinsert image description here

After analysis, it was found that the string in the inserted content was truncated at the single quotes when editing the SQL statement, resulting in a syntax error.

Solution : Replace the characters containing single quotes (') with ('').

SQL uses two single quotes instead of one single quote.

str = str.replace(” '“, ”''“);

This is the end of this article about the in-depth explanation of the problem of failure to write English single quotes "'" in SQL. For more related content about failure to write English single quotes "'" in SQL, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to handle single quotes and double quotes in SQL statements
  • Explanation of single and double quotes in PostgreSQL
  • Mybatis automatically adds single quotes to the generated SQL statement
  • A detailed analysis of the murder caused by a misplaced double quote in MySQL
  • How to use single quotes and double quotes in SQL statements

<<:  Docker Machine in-depth explanation

>>:  Some points on using standard HTML codes in web page creation

Recommend

Three ways to draw a heart shape with CSS

Below, we introduce three ways to draw heart shap...

A brief analysis of the use of the HTML webpack plugin

Using the html-webpack-plugin plug-in to start th...

An article tells you how to write a Vue plugin

Table of contents What is a plugin Writing plugin...

How to set a dotted border in html

Use CSS styles and HTML tag elements In order to ...

Detailed explanation of Nginx's control over access volume

Purpose Understand the Nginx ngx_http_limit_conn_...

mysql5.6.8 source code installation process

Kernel: [root@opop ~]# cat /etc/centos-release Ce...

Record a troubleshooting record of high CPU usage of Tomcat process

This article mainly records a tomcat process, and...

Introduction to TypeScript basic types

Table of contents 1. Basic types 2. Object Type 2...

Convert XHTML CSS pages to printer pages

<br />In the past, creating a printer-friend...

Solution to the automatic termination of docker run container

Today I encountered a problem when I used Dockerf...

js canvas implements verification code and obtains verification code function

This article example shares the specific code of ...

Web front-end skills summary (personal practical experience)

1. Today, when I was making a page, I encountered ...

MySQL uses inet_aton and inet_ntoa to process IP address data

This article will introduce how to save IP addres...