


For most web applications, the database is a very basic part. If you're using PHP, you're probably also using MySQL—an important member of the LAMP family. For many novices, using PHP can easily write code with specific functions in just a few hours. However, building a stable and reliable database requires some time and skills. Listed below are the 11 worst MySQL-related mistakes I have ever made (some of which are also reflected in the use of other languages/databases).
1. Use MyISAM instead of InnoDB
MySQL has many database engines, but the ones you are most likely to encounter are MyISAM and InnoDB.
MySQL uses MyISAM by default. However, this is a poor choice in many cases unless you are creating a very simple or experimental database. Foreign key constraints or transactions are very important for data integrity, but MyISAM does not support these. In addition, when a record is inserted or updated, the entire data table is locked, which will produce very poor operating efficiency when usage increases.
The conclusion is simple: use InnoDB.
2. Use PHP’s mysql function
PHP has provided MySQL library functions since its inception (or near as makes no difference). Many applications still use functions like mysql_connect, mysql_query, mysql_fetch_assoc, etc., although the PHP manual says: If you are using MySQL v4.1.3 or newer, it is strongly recommended that you use the mysqli extension.
mysqli (an enhanced version of MySQL extension) has the following advantages: optional object-oriented interface, prepared expressions, which helps prevent SQL injection attacks, improves performance, and supports more expressions and transaction processing , In addition, if you want to support multiple database systems, you can also consider PDO.
3. User input is not processed
This can be said like #1: Never trust user input. Validate each string with server-side PHP, don't rely on JavaScript. The simplest SQL injection attack uses the following code:
$username = $_POST["name"]; $password = $_POST["password"]; $sql = "SELECT userid FROM usertable WHERE username='$username' AND password='$password';"; // run query...
As long as you enter "admin';--" in the username field, you will be hacked. The corresponding SQL statement is as follows: SELECT userid FROM usertable WHERE username='admin'; Sly hackers can log in as admin, they don't Need to know the password because the password section is commented out.
4. UTF-8 is not used
We in the US, UK and Australia rarely consider languages other than English. We proudly complete our "masterpieces" only to find that they don't work well elsewhere. UTF-8 solves many internationalization problems. Although it is not well supported before PHP v6.0, this does not prevent you from setting the MySQL character set to UTF-8.
5. Prefer PHP to SQL
If you have been exposed to MySQL for a short time, you will tend to use the language you have already mastered to solve problems, which will lead to writing some redundant and inefficient code. For example, you wouldn't use the AVG() function that comes with MySQL, but you would first sum the values in the recordset and then use a PHP loop to calculate the average.
Also, please pay attention to the SQL query in the PHP loop. Generally speaking, executing a query is more efficient than iterating through the results. Therefore, please take advantage of the database system when analyzing data. Knowing some SQL will be of great benefit.
6. No optimization of database query
99% of PHP performance problems are caused by the database. Just one bad SQL query can completely paralyze your web application. MySQL's EXPLAIN statement, Query Profiler, and many other tools will help you find these evil SELECTs.
7. Inability to use data types correctly
MySQL provides data types such as numeric, string and date. If you want to store a time, use the DATE or DATETIME type. If you use the INTEGER or STRING type at this time, it will make the SQL query very complicated, provided that you can use INTEGER or STRING to define that type.
Many people tend to customize the format of some data without authorization, for example, using string to store serialized PHP objects. This may make the database easier to manage, but it makes MySQL a poor data store and is likely to cause failures later.
8. Use *
in queryNever use * to return data for all columns of a data table. This is laziness: you should extract the data you need. Even if you need all the fields, your data table will inevitably change.
9. Not using indexes or overusing indexes
The general principle is this: any field represented by a where clause in the select statement should use an index.
For example, suppose we have a user table, including numeric ID (primary key) and email address. When logging in, MySQL must look up the correct ID based on an email. If an index is used (here, email), then MySQL can use a faster search algorithm to locate email, even instantaneously. Otherwise, MySQL can only check each record sequentially until it finds the correct email address.
Some people add indexes to each field. Unfortunately, these indexes need to be regenerated after executing INSERT or UPDATE, which will affect performance. So, add indexes only when needed.
10. Forgot to back up!
Although rare, there is still a risk of database crash. Hard drives can get damaged, servers can crash, and web hosting providers can go bankrupt! Losing your MySQL data would be catastrophic, so make sure you have automated backups in place or have copies in place.
11. Bonus mistake-do not consider using other databases
For PHP developers, MySQL may be the most widely used database system, but it is not the only choice. PostgreSQL and Firebird are the strongest contenders: both are open source and neither has been acquired by a company. Microsoft offers SQL Server Express and Oracle offers 10g Express, both of which are free versions of enterprise-class databases. Sometimes, for a smaller web application or embedded application, SQLite can be a viable alternative.

如何处理MySQL连接错误1049?MySQL是一种常用的关系型数据库管理系统,许多开发人员和系统管理员都会使用MySQL来存储和管理数据。然而,在使用MySQL时,有时会遇到连接错误1049的问题。本文将介绍连接错误1049的原因,并给出解决这个问题的几种方法。MySQL连接错误1049通常是由于数据库不存在或者数据库名称错误导致的。当连接到MySQL服务

标题:Unknowncolumn'column_name'in'fieldlist'-如何解决MySQL报错:字段列表中的未知列,需要具体代码示例在使用MySQL数据库进行查询或操作时,有时候会遇到这样的报错信息:"Unknowncolumn'column_name'in'fieldlist'",即在字段列表中存在未知列的错误。这通常

要解决MySQL数据库初始化失败问题,请遵循以下步骤:检查权限并确保使用有适当权限的用户。如果数据库已存在,请删除它或选择不同的名称。如果表格已存在,请删除它或选择不同的名称。检查SQL语句是否存在语法错误。确认MySQL服务器正在运行且可连接。验证您使用的是正确的端口号。查看MySQL日志文件或错误代码查找器以获取其他错误的详细信息。

如何处理MySQL连接错误1017?MySQL是一种开源的关系型数据库管理系统,被广泛应用于网站开发和数据存储。然而,在使用MySQL时,可能会遇到各种各样的错误。其中一个常见的错误是连接错误1017(MySQLerrorcode1017)。连接错误1017表示数据库连接失败,通常是由于用户名或密码错误而引起的。当MySQL无法使用提供的用户名和密码验

这篇文章将为大家详细讲解有关PHP返回上一个Mysql操作中的错误信息的数字编码,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。利用PHP返回MySQL错误信息数字编码引言在处理mysql查询时,可能会遇到错误。为了有效处理这些错误,了解错误信息数字编码至关重要。本文将指导您使用php获取Mysql错误信息数字编码。获取错误信息数字编码的方法1.mysqli_errno()mysqli_errno()函数返回当前MySQL连接的最近错误号码。语法如下:$erro

如何撰写一份完美的PHP程序员求职简历在竞争激烈的就业市场中,一份出色的简历对于求职者来说是至关重要的。对于PHP程序员来说,撰写一份完美的简历尤为重要,因为简历不仅是展示自己技能和经验的窗口,也是吸引雇主注意力的关键。本文将从头到尾详解如何撰写一份完美的PHP程序员求职简历。第一步:选择简洁而具有吸引力的简历模板选择一份简洁而具有吸引力的简历模板是撰写简历

MySQL是一款非常常用的开源关系型数据库管理系统,它具有稳定、高效、灵活等特点,被广泛应用于各种类型的应用程序中。在使用MySQL时,不可避免地会遇到数据库的恢复操作,如何准确地查看MySQL数据库恢复的进度成为一个比较重要的问题。MySQL数据库的恢复进度可以通过查看MySQL的错误日志来获取相关信息。在MySQL的错误日志中,会记录所有的数据库操作记录

提高求职成功率:写一份优秀的PHP程序员求职简历的技巧在现代社会中,求职已经成为每个毕业生面临的一项重要任务。当谈到求职时,简历是最重要的一环。一份优秀的简历可以为你赢得面试的机会,甚至决定你能否成功获得工作。特别对于PHP程序员这样一个高度竞争的职位来说,如何写一份出众的求职简历,成为每个求职者的关键问题。下面我将分享一些写一份优秀的PHP程序员求职简历的


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

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

Atom editor mac version download
The most popular open source editor

SublimeText3 Linux new version
SublimeText3 Linux latest version

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
