phpMyAdmin should now be fully compatible with the new mysqli extension.

This commit is contained in:
Marcel Tschopp
2004-04-08 12:30:40 +00:00
parent 313a06cce2
commit 74cc95fe29
11 changed files with 116 additions and 105 deletions

View File

@@ -259,4 +259,12 @@ function PMA_DBI_field_len($result, $i) {
return mysql_field_len($result, $i);
}
function PMA_DBI_field_name($result, $i) {
return mysql_field_name($result, $field_index);
}
function PMA_DBI_field_flags($result, $i) {
return PMA_mysql_field_flags($result, $i);
}
?>