Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Tschopp <ne0x@users.sourceforge.net>2004-04-10 20:19:21 +0400
committerMarcel Tschopp <ne0x@users.sourceforge.net>2004-04-10 20:19:21 +0400
commit4e62f7658fd35189fd8f7f88840f6e30467f9ce8 (patch)
treeffec1f82168e27b9940e4803378f3d61d4d0fe67 /db_printview.php
parentb2e31286342f234a9156d72d19ad1fa7f4eaca06 (diff)
Changed some queries to use MYSQLI_STORE_RESULT.
phpMyAdmin now works with MYSQLI_USE_RESULT as default.
Diffstat (limited to 'db_printview.php')
-rw-r--r--db_printview.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/db_printview.php b/db_printview.php
index cb46794171..a94cd4e4b3 100644
--- a/db_printview.php
+++ b/db_printview.php
@@ -45,7 +45,7 @@ if ($cfg['SkipLockedTables'] == TRUE) {
unset($result);
if (isset($sot_cache)) {
- $result = PMA_DBI_query('SHOW TABLES FROM ' . PMA_backquote($db) . ';');
+ $result = PMA_DBI_query('SHOW TABLES FROM ' . PMA_backquote($db) . ';', NULL, PMA_DBI_QUERY_STORE);
if ($result != FALSE && PMA_DBI_num_rows($result) > 0) {
while ($tmp = PMA_DBI_fetch_row($result)) {
if (!isset($sot_cache[$tmp[0]])) {