1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-12 01:24:17 +02:00

Improve drivers

git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@1470 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
jakubvrana
2010-04-21 22:22:23 +00:00
parent 28e1dd286a
commit a29ac72c9c
4 changed files with 29 additions and 17 deletions

View File

@@ -40,7 +40,7 @@ function select($result, $connection2 = null) {
$links[$j] = $orgtable;
}
}
if ($field->charsetnr == 63) {
if ($field->charsetnr == 63) { // 63 - binary
$blobs[$j] = true;
}
$types[$j] = $field->type;
@@ -59,7 +59,7 @@ function select($result, $connection2 = null) {
$val = " "; // some content to print a border
} else {
$val = h($val);
if ($types[$key] == 254) {
if ($types[$key] == 254) { // 254 - char
$val = "<code>$val</code>";
}
}