Skip to content

Commit

Permalink
Prepare for SQLite
Browse files Browse the repository at this point in the history
git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@1192 7c3ca157-0c34-0410-bff1-cbf682f78f5c
  • Loading branch information
jakubvrana committed Oct 16, 2009
1 parent cc3ae45 commit 5e01a62
Show file tree
Hide file tree
Showing 8 changed files with 58 additions and 35 deletions.
12 changes: 3 additions & 9 deletions adminer/create.inc.php
Expand Up @@ -98,14 +98,6 @@

page_header((strlen($TABLE) ? lang('Alter table') : lang('Create table')), $error, array("table" => $TABLE), $TABLE);

$engines = array();
$result = $connection->query("SHOW ENGINES");
while ($row = $result->fetch_assoc()) {
if (ereg("YES|DEFAULT", $row["Support"])) {
$engines[] = $row["Engine"];
}
}

$row = array(
"Engine" => $_COOKIE["adminer_engine"],
"fields" => array(array("field" => "")),
Expand Down Expand Up @@ -148,6 +140,8 @@
if ($suhosin && count($row["fields"]) > $suhosin) {
echo "<p class='error'>" . h(lang('Maximum number of allowed fields exceeded. Please increase %s and %s.', 'suhosin.post.max_vars', 'suhosin.request.max_vars')) . "\n";
}

$engines = engines();
// case of engine may differ
foreach ($engines as $engine) {
if (!strcasecmp($engine, $row["Engine"])) {
Expand All @@ -160,7 +154,7 @@
<form action="" method="post" id="form">
<p>
<?php echo lang('Table name'); ?>: <input name="name" maxlength="64" value="<?php echo h($row["name"]); ?>">
<?php echo html_select("Engine", array("" => "(" . lang('engine') . ")") + $engines, $row["Engine"]); ?>
<?php echo ($engines ? html_select("Engine", array("" => "(" . lang('engine') . ")") + $engines, $row["Engine"]) : ""); ?>
<?php echo html_select("Collation", array("" => "(" . lang('collation') . ")") + $collations, $row["Collation"]); ?>
<input type="submit" value="<?php echo lang('Save'); ?>">
</p>
Expand Down
8 changes: 5 additions & 3 deletions adminer/edit.inc.php
Expand Up @@ -22,8 +22,10 @@
$set = array();
foreach ($fields as $name => $field) {
$val = process_input($field);
if ($val !== false || !$update) {
$set[] = "\n" . idf_escape($name) . " = " . ($val !== false ? $val : "''");
if (!$update) {
$set[idf_escape($name)] = ($val !== false ? $val : "''");
} elseif ($val !== false) {
$set[] = "\n" . idf_escape($name) . " = $val";
}
}
if (!$set) {
Expand All @@ -32,7 +34,7 @@
if ($update) {
query_redirect("UPDATE " . idf_escape($TABLE) . " SET" . implode(",", $set) . "\nWHERE $where\nLIMIT 1", $location, lang('Item has been updated.'));
} else {
query_redirect("INSERT INTO " . idf_escape($TABLE) . " SET" . implode(",", $set), $location, lang('Item has been inserted.'));
query_redirect("INSERT INTO " . idf_escape($TABLE) . " (" . implode(", ", array_keys($set)) . ")\nVALUES (" . implode(", ", $set) . ")", $location, lang('Item has been inserted.'));
}
}

Expand Down
4 changes: 2 additions & 2 deletions adminer/foreign.inc.php
Expand Up @@ -37,8 +37,8 @@
$row["source"][] = "";
}

$source = get_vals("SHOW COLUMNS FROM " . idf_escape($TABLE)); //! no text and blob
$target = ($TABLE === $row["table"] ? $source : get_vals("SHOW COLUMNS FROM " . idf_escape($row["table"])));
$source = array_keys(fields($TABLE)); //! no text and blob
$target = ($TABLE === $row["table"] ? $source : array_keys(fields($row["table"])));
?>

<form action="" method="post">
Expand Down
2 changes: 1 addition & 1 deletion adminer/include/adminer.inc.php
Expand Up @@ -491,7 +491,7 @@ function navigation($missing) {
</form>
<?php
if ($missing != "db" && strlen(DB) && $connection->select_db(DB)) {
$tables = get_vals("SHOW TABLES");
$tables = tables_list();
if (!$tables) {
echo "<p class='message'>" . lang('No tables.') . "\n";
} else {
Expand Down
12 changes: 10 additions & 2 deletions adminer/include/functions.inc.php
Expand Up @@ -24,6 +24,15 @@ function idf_unescape($idf) {
return str_replace("``", "`", $idf);
}

/** Escape string to use inside ''
* @param string
* @return string
*/
function escape_string($val) {
global $connection;
return substr($connection->quote($val), 1, -1);
}

/** Escape or unescape string to use inside form []
* @param string
* @param bool
Expand Down Expand Up @@ -155,11 +164,10 @@ function unique_idf($row, $indexes) {
* @return string
*/
function where($where) {
global $connection;
$return = array();
foreach ((array) $where["where"] as $key => $val) {
$key = bracket_escape($key, "back");
$return[] = (preg_match('~^[A-Z0-9_]+\\(`(?:[^`]|``)+`\\)$~', $key) ? $key : idf_escape($key)) . " = BINARY " . $connection->quote($val); //! enum and set, columns looking like functions
$return[] = (preg_match('~^[A-Z0-9_]+\\(`(?:[^`]|``)+`\\)$~', $key) ? $key : idf_escape($key)) . " = " . exact_value($val); //! enum and set, columns looking like functions
}
foreach ((array) $where["null"] as $key) {
$key = bracket_escape($key, "back");
Expand Down
35 changes: 27 additions & 8 deletions adminer/include/mysql.inc.php
Expand Up @@ -177,6 +177,25 @@ function get_databases($flush = true) {
return $return;
}

function engines() {
global $connection;
$return = array();
$result = $connection->query("SHOW ENGINES");
while ($row = $result->fetch_assoc()) {
if (ereg("YES|DEFAULT", $row["Support"])) {
$return[] = $row["Engine"];
}
}
return $return;
}

/** Get tables list
* @return array
*/
function tables_list() {
return get_vals("SHOW TABLES");
}

/** Get table status
* @param string
* @return array
Expand Down Expand Up @@ -315,22 +334,22 @@ function collations() {
return $return;
}

/** Escape string to use inside ''
/** Find out if database is information_schema
* @param string
* @return string
* @return bool
*/
function escape_string($val) {
function information_schema($db) {
global $connection;
return substr($connection->quote($val), 1, -1);
return ($connection->server_info >= 5 && $db == "information_schema");
}

/** Find out if database is information_schema
/** Return expression for binary comparison
* @param string
* @return bool
* @return string
*/
function information_schema($db) {
function exact_value($val) {
global $connection;
return ($connection->server_info >= 5 && $db == "information_schema");
return "BINARY " . $connection->quote($val);
}

// value means maximum unsigned length
Expand Down
18 changes: 9 additions & 9 deletions adminer/table.inc.php
@@ -1,22 +1,22 @@
<?php
$TABLE = $_GET["table"];
$result = $connection->query("SHOW FULL COLUMNS FROM " . idf_escape($TABLE));
if (!$result) {
$fields = fields($TABLE);
if (!$fields) {
$error = h($connection->error);
}
$table_status = ($result ? table_status($TABLE) : array());
$table_status = ($fields ? table_status($TABLE) : array());
$is_view = !isset($table_status["Rows"]);

page_header(($result && $is_view ? lang('View') : lang('Table')) . ": " . h($TABLE), $error);
page_header(($fields && $is_view ? lang('View') : lang('Table')) . ": " . h($TABLE), $error);
$adminer->selectLinks($table_status, $is_view ? null : "");

if ($result) {
if ($fields) {
echo "<table cellspacing='0'>\n";
echo "<thead><tr><th>" . lang('Column') . "<td>" . lang('Type') . "<td>" . lang('Comment') . "</thead>\n";
while ($row = $result->fetch_assoc()) {
echo "<tr><th>" . h($row["Field"]);
echo "<td>" . h($row["Type"]) . ($row["Null"] == "YES" ? " <i>NULL</i>" : "") . ($row["Extra"] == "auto_increment" ? " <i>" . lang('Auto Increment') . "</i>" : "");
echo "<td>" . nbsp($row["Comment"]);
foreach ($fields as $field) {
echo "<tr><th>" . h($field["field"]);
echo "<td>" . h($field["full_type"]) . ($field["null"] ? " <i>NULL</i>" : "") . ($field["auto_increment"] ? " <i>" . lang('Auto Increment') . "</i>" : "");
echo "<td>" . nbsp($field["comment"]);
echo "\n";
}
echo "</table>\n";
Expand Down
2 changes: 1 addition & 1 deletion editor/include/adminer.inc.php
Expand Up @@ -116,7 +116,7 @@ function rowDescriptions($rows, $foreignKeys) {
// find all used ids
$ids = array();
foreach ($rows as $row) {
$ids[$row[$key]] = "BINARY " . $connection->quote($row[$key]);
$ids[$row[$key]] = exact_value($row[$key]);
}
// uses constant number of queries to get the descriptions, join would be complex, multiple queries would be slow
$descriptions = array();
Expand Down

0 comments on commit 5e01a62

Please sign in to comment.