2 /* vim: set expandtab sw=4 ts=4 sts=4: */
4 * Handles table search tab
6 * display table search form, create SQL query from form data
7 * and include sql.php to execute it
9 * @todo display search form again if no results from previous search
15 * Gets some core libraries
17 require_once './libraries/common.inc.php';
18 require_once './libraries/relation.lib.php'; // foreign keys
19 require_once './libraries/mysql_charsets.lib.php';
21 $GLOBALS['js_include'][] = 'tbl_change.js';
22 $GLOBALS['js_include'][] = 'mootools.js';
24 if ($GLOBALS['cfg']['PropertiesIconic'] == true) {
26 '<img class="icon" width="16" height="16" src="' . $pmaThemeImage
27 .'b_browse.png" alt="' . $strBrowseForeignValues . '" title="'
28 .$strBrowseForeignValues . '" />';
30 if ($GLOBALS['cfg']['PropertiesIconic'] === 'both') {
31 $titles['Browse'] .= $strBrowseForeignValues;
34 $titles['Browse'] = $strBrowseForeignValues;
38 * Not selection yet required -> displays the selection form
40 if (!isset($param) ||
$param[0] == '') {
41 // Gets some core libraries
42 require_once './libraries/tbl_common.php';
43 //$err_url = 'tbl_select.php' . $err_url;
44 $url_query .= '&goto=tbl_select.php&back=tbl_select.php';
47 * Gets tables informations
49 require_once './libraries/tbl_info.inc.php';
52 * Displays top menu links
54 require_once './libraries/tbl_links.inc.php';
57 $goto = $GLOBALS['cfg']['DefaultTabTable'];
59 // Defines the url to return to in case of error in the next sql statement
60 $err_url = $goto . '?' . PMA_generate_common_url($db, $table);
62 // Gets the list and number of fields
63 $result = PMA_DBI_query('SHOW FULL FIELDS FROM ' . PMA_backquote($table) . ' FROM ' . PMA_backquote($db) . ';', null, PMA_DBI_QUERY_STORE
);
64 $fields_cnt = PMA_DBI_num_rows($result);
65 // rabue: we'd better ensure, that all arrays are empty.
66 $fields_list = $fields_null = $fields_type = $fields_collation = array();
67 while ($row = PMA_DBI_fetch_assoc($result)) {
68 $fields_list[] = $row['Field'];
70 // reformat mysql query output - staybyte - 9. June 2001
71 if (strncasecmp($type, 'set', 3) == 0
72 ||
strncasecmp($type, 'enum', 4) == 0) {
73 $type = str_replace(',', ', ', $type);
76 // strip the "BINARY" attribute, except if we find "BINARY(" because
77 // this would be a BINARY or VARBINARY field type
78 if (!preg_match('@BINARY[\(]@i', $type)) {
79 $type = preg_replace('@BINARY@i', '', $type);
81 $type = preg_replace('@ZEROFILL@i', '', $type);
82 $type = preg_replace('@UNSIGNED@i', '', $type);
84 $type = strtolower($type);
89 $fields_null[] = $row['Null'];
90 $fields_type[] = $type;
91 $fields_collation[] = !empty($row['Collation']) && $row['Collation'] != 'NULL'
95 PMA_DBI_free_result($result);
96 unset($result, $type);
99 // retrieve keys into foreign fields, if any
100 // check also foreigners even if relwork is FALSE (to get
101 // foreign keys from innodb)
102 $foreigners = PMA_getForeigners($db, $table);
104 <script type
="text/javascript">
106 function PMA_tbl_select_operator(f
, index
, multiple
) {
107 switch (f
.elements
["func[" + index +
"]"].options
[f
.elements
["func[" + index +
"]"].selectedIndex
].value
) {
109 reset($GLOBALS['cfg']['UnaryOperators']);
110 while (list($operator) = each($GLOBALS['cfg']['UnaryOperators'])) {
111 echo ' case "' . $operator . "\":\r\n";
120 f
.elements
["fields[" + index +
"]" +
((multiple
) ?
"[]": "")].disabled
= bDisabled
;
124 <form method
="post" action
="tbl_select.php" name
="insertForm">
125 <?php
echo PMA_generate_common_hidden_inputs($db, $table); ?
>
126 <input type
="hidden" name
="goto" value
="<?php echo $goto; ?>" />
127 <input type
="hidden" name
="back" value
="tbl_select.php" />
129 <fieldset id
="fieldset_table_search">
131 <fieldset id
="fieldset_table_qbe">
132 <legend
><?php
echo $strDoAQuery; ?
></legend
>
135 <tr
><th
><?php
echo $strField; ?
></th
>
136 <th
><?php
echo $strType; ?
></th
>
137 <th
><?php
echo $strCollation; ?
></th
>
138 <th
><?php
echo $strOperator; ?
></th
>
139 <th
><?php
echo $strValue; ?
></th
>
146 for ($i = 0; $i < $fields_cnt; $i++
) {
148 <tr
class="<?php echo $odd_row ? 'odd' : 'even'; $odd_row = ! $odd_row; ?>">
149 <th
><?php
echo htmlspecialchars($fields_list[$i]); ?
></th
>
150 <td
><?php
echo $fields_type[$i]; ?
></td
>
151 <td
><?php
echo $fields_collation[$i]; ?
></td
>
152 <td
><select name
="func[]">
154 if (strncasecmp($fields_type[$i], 'enum', 4) == 0) {
155 foreach ($GLOBALS['cfg']['EnumOperators'] as $fc) {
157 . '<option value="' . htmlspecialchars($fc) . '">'
158 . htmlspecialchars($fc) . '</option>';
160 } elseif (preg_match('@char|blob|text|set@i', $fields_type[$i])) {
161 foreach ($GLOBALS['cfg']['TextOperators'] as $fc) {
163 . '<option value="' . htmlspecialchars($fc) . '">'
164 . htmlspecialchars($fc) . '</option>';
167 foreach ($GLOBALS['cfg']['NumOperators'] as $fc) {
169 . '<option value="' . htmlspecialchars($fc) . '">'
170 . htmlspecialchars($fc) . '</option>';
172 } // end if... else...
173 if ($fields_null[$i]) {
174 foreach ($GLOBALS['cfg']['NullOperators'] as $fc) {
176 . '<option value="' . htmlspecialchars($fc) . '">'
177 . htmlspecialchars($fc) . '</option>';
187 $field = $fields_list[$i];
189 $foreignData = PMA_getForeignData($foreigners, $field, false, '', '');
191 if ($foreigners && isset($foreigners[$field]) && is_array($foreignData['disp_row'])) {
192 // f o r e i g n k e y s
193 echo ' <select name="fields[' . $i . ']">' . "\n";
194 // go back to first row
196 // here, the 4th parameter is empty because there is no current
197 // value of data for the dropdown (the search page initial values
198 // are displayed empty)
199 echo PMA_foreignDropdown($foreignData['disp_row'],
200 $foreignData['foreign_field'],
201 $foreignData['foreign_display'],
202 '', $GLOBALS['cfg']['ForeignKeyMaxLimit']);
203 echo ' </select>' . "\n";
204 } elseif ($foreignData['foreign_link'] == true) {
206 <input type
="text" name
="fields[<?php echo $i; ?>]"
207 id
="field_<?php echo md5($field); ?>[<?php echo $i; ?>]"
209 <script type
="text/javascript">
211 document
.writeln('<a target="_blank" onclick="window.open(this.href, \'foreigners\', \'width=640,height=240,scrollbars=yes\'); return false" href="browse_foreigners.php?<?php echo PMA_generate_common_url($db, $table); ?>&field=<?php echo urlencode($field); ?>&fieldkey=<?php echo $i; ?>"><?php echo str_replace("'", "\'
", $titles['Browse']); ?></a>');
215 } elseif (strncasecmp($fields_type[$i], 'enum', 4) == 0) {
217 $enum_value=explode(', ', str_replace("'", '', substr($fields_type[$i], 5, -1)));
218 $cnt_enum_value = count($enum_value);
219 echo ' <select name
="fields[' . $i . '][]"'
220 .' multiple
="multiple" size
="' . min(3, $cnt_enum_value) . '">' . "\n";
221 for ($j = 0; $j < $cnt_enum_value; $j++) {
222 echo ' <option value
="' . $enum_value[$j] . '">'
223 . $enum_value[$j] . '</option
>';
225 echo ' </select
>' . "\n";
227 // o t h e r c a s e s
228 echo ' <input type
="text" name
="fields[' . $i . ']"'
229 .' size
="40" class="textfield" id
="field_' . $i . '" />' . "\n";
231 $type = $fields_type[$i];
232 if ($type == 'date
' || $type == 'datetime
' || substr($type, 0, 9) == 'timestamp
') {
234 <script type="text/javascript">
236 document.write('<a title
="<?php echo $strCalendar;?>" href
="javascript:openCalendar(\'<?php echo PMA_generate_common_url();?>\', \'insertForm\', \'field_<?php echo ($i); ?>\', \'<?php echo (substr($type, 0, 9) == 'timestamp') ? 'datetime' : substr($type, 0, 9); ?>\', \'\')"><img
class="calendar" src
="<?php echo $pmaThemeImage; ?>b_calendar.png" alt
="<?php echo $strCalendar; ?>"/></a
>');
242 <input type="hidden" name="names[<?php echo $i; ?>]"
243 value="<?php echo htmlspecialchars($fields_list[$i]); ?>" />
244 <input type="hidden" name="types[<?php echo $i; ?>]"
245 value="<?php echo $fields_type[$i]; ?>" />
246 <input type="hidden" name="collations[<?php echo $i; ?>]"
247 value="<?php echo $fields_collation[$i]; ?>" />
257 PMA_generate_slider_effect('searchoptions
', $strOptions);
259 <fieldset id="fieldset_select_fields">
260 <legend><?php echo $strSelectFields; ?></legend>
261 <select name="param[]" size="<?php echo min($fields_cnt, 10); ?>"
264 // Displays the list of the fields
265 foreach ($fields_list as $each_field) {
267 .'<option value
="' . htmlspecialchars($each_field) . '"'
268 .' selected
="selected">' . htmlspecialchars($each_field)
273 <input type="checkbox" name="distinct" value="DISTINCT" id="oDistinct" />
274 <label for="oDistinct">DISTINCT</label>
277 <fieldset id="fieldset_search_conditions">
278 <legend><?php echo '<em
>' . $strOr . '</em
> ' .$strAddSearchConditions; ?></legend>
279 <?php echo PMA_showMySQLDocu('SQL
-Syntax
', 'Functions
'); ?>
281 <input type="text" name="where" class="textfield" size="64" />
284 <fieldset id="fieldset_limit_rows">
285 <legend><?php echo $strLimitNumRows; ?></legend>
286 <input type="text" size="4" name="session_max_rows"
287 value="<?php echo $GLOBALS['cfg
']['MaxRows
']; ?>" class="textfield" />
290 <fieldset id="fieldset_display_order">
291 <legend><?php echo $strDisplayOrder; ?></legend>
292 <select name="orderField" style="vertical-align: middle">
293 <option value="--nil--"></option>
295 foreach ($fields_list as $each_field) {
297 .'<option value
="' . htmlspecialchars($each_field) . '">'
298 .htmlspecialchars($each_field) . '</option
>' . "\n";
304 'ASC
' => $strAscending,
305 'DESC
' => $strDescending
307 PMA_display_html_radio('order
', $choices, 'ASC
', false, true, "formelement");
311 <br style="clear: both;"/>
314 <fieldset class="tblFooters">
315 <input type="hidden" name="max_number_of_fields"
316 value="<?php echo $fields_cnt; ?>" />
317 <input type="submit" name="submit" value="<?php echo $strGo; ?>" />
321 require_once './libraries
/footer
.inc
.php
';
326 * Selection criteria have been submitted -> do the work
331 $sql_query = 'SELECT
' . (isset($distinct) ? 'DISTINCT
' : '');
333 // if all fields were selected to display, we do a SELECT *
334 // (more efficient and this helps prevent a problem in IE
335 // if one of the rows is edited and we come back to the Select results)
337 if (count($param) == $max_number_of_fields) {
340 $param = PMA_backquote($param);
341 $sql_query .= implode(', ', $param);
344 // avoid a loop, for example when $cfg['DefaultTabTable
'] is set
345 // to 'tbl_select
.php
'
348 $sql_query .= ' FROM
' . PMA_backquote($table);
351 if (trim($where) != '') {
352 $sql_query .= ' WHERE
' . $where;
354 $w = $charsets = array();
355 $cnt_func = count($func);
357 while (list($i, $func_type) = each($func)) {
358 list($charsets[$i]) = explode('_
', $collations[$i]);
359 if (isset($GLOBALS['cfg
']['UnaryOperators
'][$func_type]) && $GLOBALS['cfg
']['UnaryOperators
'][$func_type] == 1) {
361 $w[] = PMA_backquote($names[$i]) . ' ' . $func_type;
363 } elseif (strncasecmp($types[$i], 'enum
', 4) == 0) {
364 if (!empty($fields[$i])) {
365 if (!is_array($fields[$i])) {
366 $fields[$i] = explode(',', $fields[$i]);
368 $enum_selected_count = count($fields[$i]);
369 if ($func_type == '=' && $enum_selected_count > 1) {
370 $func_type = $func[$i] = 'IN
';
374 } elseif ($func_type == '!=' && $enum_selected_count > 1) {
375 $func_type = $func[$i] = 'NOT IN
';
383 $enum_where = '\'
' . PMA_sqlAddslashes($fields[$i][0]) . '\'
';
384 for ($e = 1; $e < $enum_selected_count; $e++) {
385 $enum_where .= ', \'' . PMA_sqlAddslashes($fields[$i][$e]) . '\'
';
388 $w[] = PMA_backquote($names[$i]) . ' ' . $func_type . ' ' . $parens_open . $enum_where . $parens_close;
391 } elseif ($fields[$i] != '') {
392 // For these types we quote the value. Even if it's another
type (like
INT),
393 // for a LIKE we always quote the value. MySQL converts strings to numbers
394 // and numbers to strings as necessary during the comparison
395 if (preg_match('@char|binary|blob|text|set|date|time|year@i', $types[$i]) ||
strpos(' ' . $func_type, 'LIKE')) {
402 if ($func_type == 'LIKE %...%') {
404 $fields[$i] = '%' . $fields[$i] . '%';
406 $w[] = PMA_backquote($names[$i]) . ' ' . $func_type . ' ' . $quot . PMA_sqlAddslashes($fields[$i]) . $quot;
412 $sql_query .= ' WHERE ' . implode(' AND ', $w);
416 if ($orderField != '--nil--') {
417 $sql_query .= ' ORDER BY ' . PMA_backquote($orderField) . ' ' . $order;