mirror of
https://github.com/vrana/adminer.git
synced 2026-03-14 08:31:04 +01:00
git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@859 7c3ca157-0c34-0410-bff1-cbf682f78f5c
25 lines
339 B
PHP
25 lines
339 B
PHP
<?php
|
|
// try to compile current version
|
|
$_SERVER["argv"] = array("", "editor");
|
|
ob_start();
|
|
include "../../compile.php";
|
|
ob_end_clean();
|
|
|
|
class Adminer {
|
|
|
|
function name() {
|
|
return 'CDs';
|
|
}
|
|
|
|
function credentials() {
|
|
return array('localhost', 'ODBC', '');
|
|
}
|
|
|
|
function database() {
|
|
return 'cds';
|
|
}
|
|
|
|
}
|
|
|
|
include "./editor.php";
|