Changeset 7018
- Timestamp:
- 11/19/08 00:01:57 (7 weeks ago)
- Files:
-
- 1 modified
-
trunk/library/data/mysql/Adapter.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/library/data/mysql/Adapter.php
r7001 r7018 276 276 277 277 public static function fetch($handle = null, $type = 'assoc') { 278 if ($handle == null) return null; 278 279 if($type == 'array') return mysql_fetch_array($handle); // Can I use mysql_fetch_row instead? 279 280 else if ($type == 'row') return mysql_fetch_row($handle);
