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 --- UPGRADING | 2 ++ 1 file changed, 2 insertions(+) (limited to 'UPGRADING') diff --git a/UPGRADING b/UPGRADING index 9318b71..913da8d 100644 --- a/UPGRADING +++ b/UPGRADING @@ -15,6 +15,8 @@ ALTER TABLE Users ADD COLUMN PGPKey VARCHAR(40) NULL DEFAULT NULL; 3. Update Archive_Tar to version greater than 1.3.7. +4. Enable the PDO MySQL extension (pdo_mysql.so) in "php.ini". + From 1.9.0 to 1.9.1 ------------------- -- cgit v1.2.3-54-g00ecf