1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-12 09:34:10 +02:00

Update MS SQL

git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@1516 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
jakubvrana
2010-05-05 11:11:33 +00:00
parent 8b7aefcb94
commit c9681e1520

View File

@@ -477,8 +477,20 @@ WHERE sys1.xtype = 'TR' AND sys2.name = " . $connection->quote($table)
);
}
function use_sql($database) {
return "USE " . idf_escape($database);
}
function show_variables() {
return array();
}
function show_status() {
return array();
}
function support($feature) {
return ereg('^(view|routine|trigger)$', $feature);
return ereg('^(trigger)$', $feature); //! view|routine|
}
$driver = "mssql";