diff options
| author | Antonio Gallo <tonicucoz@gmail.com> | 2013-10-14 16:06:56 +0000 | 
|---|---|---|
| committer | Antonio Gallo <tonicucoz@gmail.com> | 2013-10-14 16:06:56 +0000 | 
| commit | a93461b231fb94f3a6a9df09a30557732201ddcc (patch) | |
| tree | f278951ee7746da2a618ec57043c57fafe779c1d /h-source/Library/Db | |
| parent | 6fa0219202ce4ccc5c4592e66031bb0f7f8be2b0 (diff) | |
added new EasyGiant Library
Diffstat (limited to 'h-source/Library/Db')
| -rwxr-xr-x | h-source/Library/Db/Mysql.php | 3 | ||||
| -rw-r--r-- | h-source/Library/Db/Mysqli.php | 3 | 
2 files changed, 4 insertions, 2 deletions
diff --git a/h-source/Library/Db/Mysql.php b/h-source/Library/Db/Mysql.php index 4561a1b..d19d24a 100755 --- a/h-source/Library/Db/Mysql.php +++ b/h-source/Library/Db/Mysql.php @@ -270,7 +270,8 @@ class Db_Mysql {  		$result = mysql_query($query);  		$temp = array();  		while ($row = mysql_fetch_assoc($result)) { -			$temp[$row['Field']] = reset(explode('(',$row['Type'])); +			$e = explode('(',$row['Type']); +			$temp[$row['Field']] = reset($e);  		}  		$types = array(); diff --git a/h-source/Library/Db/Mysqli.php b/h-source/Library/Db/Mysqli.php index df57a54..b65f470 100644 --- a/h-source/Library/Db/Mysqli.php +++ b/h-source/Library/Db/Mysqli.php @@ -273,7 +273,8 @@ class Db_Mysqli  		$result = $this->db->query($query);  		$temp = array();  		while ($row = $result->fetch_assoc()) { -			$temp[$row['Field']] = reset(explode('(',$row['Type'])); +			$e = explode('(',$row['Type']); +			$temp[$row['Field']] = reset($e);  		}  		$result->close();  | 
