diff options
author | Marc Alexander <admin@m-a-styles.de> | 2019-10-06 12:07:35 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2019-10-06 12:07:35 +0200 |
commit | bd02c5bd085e957aa4341e7fc2df2199081ab069 (patch) | |
tree | ea737eab62dc1f56bb3760542b0f27095f6eca64 /phpBB/docs | |
parent | 68c197fd6012b5435a29a288113b957e7957de59 (diff) | |
download | forums-bd02c5bd085e957aa4341e7fc2df2199081ab069.tar forums-bd02c5bd085e957aa4341e7fc2df2199081ab069.tar.gz forums-bd02c5bd085e957aa4341e7fc2df2199081ab069.tar.bz2 forums-bd02c5bd085e957aa4341e7fc2df2199081ab069.tar.xz forums-bd02c5bd085e957aa4341e7fc2df2199081ab069.zip |
[ticket/16051] Remove mysql driver as it's no longer supported in PHP >= 7.0
PHPBB3-16051
Diffstat (limited to 'phpBB/docs')
-rw-r--r-- | phpBB/docs/coding-guidelines.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/docs/coding-guidelines.html b/phpBB/docs/coding-guidelines.html index 72ad115e71..6cf647c55f 100644 --- a/phpBB/docs/coding-guidelines.html +++ b/phpBB/docs/coding-guidelines.html @@ -738,7 +738,7 @@ static private function f()</pre> <a name="sql"></a><h3>2.iii. SQL/SQL Layout</h3> <h4>Common SQL Guidelines: </h4> - <p>All SQL should be cross-DB compatible, if DB specific SQL is used alternatives must be provided which work on all supported DB's (MySQL3/4/5, MSSQL (7.0 and 2000), PostgreSQL (8.3+), SQLite, Oracle8, ODBC (generalised if possible)).</p> + <p>All SQL should be cross-DB compatible, if DB specific SQL is used alternatives must be provided which work on all supported DB's (MySQL4/5, MSSQL (7.0 and 2000), PostgreSQL (8.3+), SQLite, Oracle8, ODBC (generalised if possible)).</p> <p>All SQL commands should utilise the DataBase Abstraction Layer (DBAL)</p> <h4>SQL code layout:</h4> |