mysql connectors refers to the interaction with SQL in different languages, and MySQL is composed of SQL interface, parser, optimizer, cache, and storage engine.
Connectors refer to interaction with SQL in different languages.
MySQL is composed of SQL interface, parser, optimizer, cache, and storage engine.
Recommended: "mysql tutorial"
Related introduction:
Client and server-side model
MySQL is a typical C/S mode, single-process and multi-thread service structure. The client program that comes with MySQL is under /usr/local/mysql/bin, such as: mysql, mysqladmin, mysqldump, etc.; the server program is mysqld (that is, a daemon process, a binary program)
The above is the detailed content of what are mysql connectors. For more information, please follow other related articles on the PHP Chinese website!