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

Promote MongoDB, demote Oracle and MS SQL

This commit is contained in:
Jakub Vrana
2018-02-10 00:09:07 +01:00
parent 1f12ea4e4a
commit d18c7b3587
3 changed files with 3 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
<?php
$drivers["mongo"] = "MongoDB (beta)";
$drivers["mongo"] = "MongoDB";
if (isset($_GET["mongo"])) {
$possible_drivers = array("mongo", "mongodb");

View File

@@ -5,7 +5,7 @@
* @author Jakub Vrana
*/
$drivers["mssql"] = "MS SQL";
$drivers["mssql"] = "MS SQL (beta)";
if (isset($_GET["mssql"])) {
$possible_drivers = array("SQLSRV", "MSSQL", "PDO_DBLIB");

View File

@@ -1,5 +1,5 @@
<?php
$drivers["oracle"] = "Oracle";
$drivers["oracle"] = "Oracle (beta)";
if (isset($_GET["oracle"])) {
$possible_drivers = array("OCI8", "PDO_OCI");