Put the mssql table names in ascending order.
This commit is contained in:
parent
95402463e0
commit
7820589aee
|
|
@ -236,7 +236,7 @@ include "root.php";
|
|||
$sql = "show tables";
|
||||
}
|
||||
if ($this->type == "mssql") {
|
||||
$sql = "SELECT * FROM sys.Tables";
|
||||
$sql = "SELECT * FROM sys.Tables order by name asc";
|
||||
}
|
||||
$prep_statement = $this->db->prepare(check_sql($sql));
|
||||
$prep_statement->execute();
|
||||
|
|
|
|||
Loading…
Reference in New Issue