From e171f6f34eeacf35cf7142b4788d43e7d0978546 Mon Sep 17 00:00:00 2001 From: canyonknight Date: Wed, 8 Aug 2012 18:09:51 -0400 Subject: Migrate all DB code to use PDO All DB code currently uses the quickly aging mysql_* functions. These functions are strongly discouraged and may eventually be deprecated. Transition all code to utilize the PDO data access abstraction layer. PDO allows for consistent query code across multiple databases. This could potentially allow for someone to use a database other than MySQL with minimal code changes. All functions and behaviors are reproduced as faithfully as possible with PDO equivalents and some changes in code. Signed-off-by: canyonknight Signed-off-by: Lukas Fleischer --- INSTALL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'INSTALL') diff --git a/INSTALL b/INSTALL index ca79f10..b30194e 100644 --- a/INSTALL +++ b/INSTALL @@ -45,7 +45,7 @@ Setup on Arch Linux: Make sure you have mysql and json enabled in PHP. - Edit php.ini and uncomment/add these lines: - extension=mysql.so + extension=pdo_mysql.so extension=json.so If those php extensions are separate packages on your system, install -- cgit v1.2.3-54-g00ecf