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:
authorMarc Delisle <marc@infomarc.info>2004-08-08 23:21:39 +0400
committerMarc Delisle <marc@infomarc.info>2004-08-08 23:21:39 +0400
commit1742119cf60e8d2101674e96c77d0b87a1300b48 (patch)
tree4ca4ba86357f05105d5868849f914ea13ca8fde6 /pdf_schema.php
parentca7c2281dbf2b267f667a5576e3c5b8d39973d7a (diff)
PDF pages and mysqli extension
Diffstat (limited to 'pdf_schema.php')
-rw-r--r--pdf_schema.php13
1 files changed, 6 insertions, 7 deletions
diff --git a/pdf_schema.php b/pdf_schema.php
index e5f66f43f6..76ec5e042e 100644
--- a/pdf_schema.php
+++ b/pdf_schema.php
@@ -2,7 +2,6 @@
/* $Id$ */
// vim: expandtab sw=4 ts=4 sts=4:
-
/**
* Contributed by Maxime Delorme and merged by lem9
*/
@@ -683,7 +682,7 @@ class PMA_RT_Table
$this->table_name = $table_name;
$sql = 'DESCRIBE ' . PMA_backquote($table_name);
- $result = PMA_DBI_try_query($sql);
+ $result = PMA_DBI_try_query($sql, NULL, PMA_DBI_QUERY_STORE);
if (!$result || !PMA_DBI_num_rows($result)) {
$pdf->PMA_PDF_die(sprintf($GLOBALS['strPdfInvalidTblName'], $table_name));
}
@@ -705,7 +704,7 @@ class PMA_RT_Table
. ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\''
. ' AND table_name = \'' . PMA_sqlAddslashes($table_name) . '\''
. ' AND pdf_page_number = ' . $pdf_page_number;
- $result = PMA_query_as_cu($sql);
+ $result = PMA_query_as_cu($sql, FALSE, PMA_DBI_QUERY_STORE);
if (!$result || !PMA_DBI_num_rows($result)) {
$pdf->PMA_PDF_die(sprintf($GLOBALS['strConfigureTableCoord'], $table_name));
@@ -717,7 +716,7 @@ class PMA_RT_Table
$this->displayfield = PMA_getDisplayField($db, $table_name);
// index
- $result = PMA_DBI_query('SHOW INDEX FROM ' . PMA_backquote($table_name) . ';');
+ $result = PMA_DBI_query('SHOW INDEX FROM ' . PMA_backquote($table_name) . ';', NULL, PMA_DBI_QUERY_STORE);
if (PMA_DBI_num_rows($result) > 0) {
while ($row = PMA_DBI_fetch_assoc($result)) {
if ($row['Key_name'] == 'PRIMARY') {
@@ -1106,7 +1105,7 @@ class PMA_RT
$tab_sql = 'SELECT table_name FROM ' . PMA_backquote($cfgRelation['table_coords'])
. ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\''
. ' AND pdf_page_number = ' . $which_rel;
- $tab_rs = PMA_query_as_cu($tab_sql);
+ $tab_rs = PMA_query_as_cu($tab_sql, NULL, PMA_DBI_QUERY_STORE);
if (!$tab_rs || !PMA_DBI_num_rows($tab_rs) > 0) {
$pdf->PMA_PDF_die($GLOBALS['strPdfNoTables']);
// die('No tables');
@@ -1272,7 +1271,7 @@ function PMA_RT_DOC($alltables ){
/**
* Gets table informations
*/
- $result = PMA_DBI_query('SHOW TABLE STATUS LIKE \'' . PMA_sqlAddslashes($table, TRUE) . '\';');
+ $result = PMA_DBI_query('SHOW TABLE STATUS LIKE \'' . PMA_sqlAddslashes($table, TRUE) . '\';', NULL, PMA_DBI_QUERY_STORE);
$showtable = PMA_DBI_fetch_assoc($result);
$num_rows = (isset($showtable['Rows']) ? $showtable['Rows'] : 0);
$show_comment = (isset($showtable['Comment']) ? $showtable['Comment'] : '');
@@ -1329,7 +1328,7 @@ function PMA_RT_DOC($alltables ){
/**
* Gets fields properties
*/
- $result = PMA_DBI_query('SHOW FIELDS FROM ' . PMA_backquote($table) . ';');
+ $result = PMA_DBI_query('SHOW FIELDS FROM ' . PMA_backquote($table) . ';', NULL, PMA_DBI_QUERY_STORE);
$fields_cnt = PMA_DBI_num_rows($result);