Home » Database » DB » Bug #2374
$db->tableInfo($resultset) on mysql
Details
| Submitted | 2004-09-22 15:46 UTC |
|---|---|
| From | fabrizio dot balliano at crealabs dot it |
| Assigned | danielc |
| Status | Bogus |
| Package | DB |
| PHP Version | 4.3.4 |
| OS | linux |
| Roadmaps | (Not assigned) |
Comments
[2004-09-22 15:46 UTC] fabrizio dot balliano at crealabs dot it
Description:
------------
with mysql doing:
$rs = $db->query("SELECT * FROM test")
$db->tableInfo($rs);
does not work
you've to patch the mysql.php, line 755
-$id = $result;
+$id = $result->result;
and it works
Expected result:
----------------