- Drupal 8 Module Development
- Daniel Sipos
- 172字
- 2021-07-02 15:45:08
Databases and MySQL
In the past, Drupal has supported two databases--MySQL and PostgreSQL. Drupal 7 and 8 have moved beyond this. Drupal now uses the powerful PHP Data Objects (PDO) library that is standard in PHP 5/7. This library is an abstraction layer that allows developers to support numerous databases, including MySQL, PostgreSQL, SQLite, and MariaDB.
The minimum database versions for Drupal 8 are as follows:
- MySQL 5.5.3/MariaDB 5.5.20/Percona Server 5.5.8 or higher with PDO and an InnoDB-compatible primary storage engine
- PostgreSQL 9.1.2 or higher with PDO
- SQLite 3.7.11 or higher
Additionally, Drupal provides a powerful database API along with some SQL coding conventions that make it easy to interact with your database--both combined allow you to write safe and portable SQL. However, more and more abstractions have been made at different levels, removing the need for SQL writing almost completely. However, we will still see some examples just so your toolbox does not miss anything, as well as cover all the tools at your disposal for querying your database.
- C# 7 and .NET Core Cookbook
- Java程序設計與開發
- ASP.NET MVC4框架揭秘
- Oracle從新手到高手
- Python入門很簡單
- MATLAB 2020 從入門到精通
- Mastering Python Scripting for System Administrators
- 3D少兒游戲編程(原書第2版)
- Domain-Driven Design in PHP
- Spring技術內幕:深入解析Spring架構與設計原理(第2版)
- MongoDB Cookbook(Second Edition)
- Java多線程并發體系實戰(微課視頻版)
- CryENGINE Game Programming with C++,C#,and Lua
- Distributed Computing with Python
- Java EE基礎實用教程