From 0d00ab0db52a999d737f6e95a9b99a78c7903548 Mon Sep 17 00:00:00 2001 From: Masayuki Nii Date: Sat, 25 Nov 2023 10:00:02 +0900 Subject: [PATCH] Missing abstract methods defined. --- .../DB/Support/DB_PDO_SQLServer_Handler.php | 19 +++++++++++++++++++ src/php/DB/Support/DB_PDO_SQLite_Handler.php | 18 ++++++++++++++++++ 2 files changed, 37 insertions(+) diff --git a/src/php/DB/Support/DB_PDO_SQLServer_Handler.php b/src/php/DB/Support/DB_PDO_SQLServer_Handler.php index 8357289fe..d5c9cffc9 100644 --- a/src/php/DB/Support/DB_PDO_SQLServer_Handler.php +++ b/src/php/DB/Support/DB_PDO_SQLServer_Handler.php @@ -346,4 +346,23 @@ protected function getAutoIncrementField($tableName): ?string { return "unknown"; } + + + public function sqlLISTDATABASECommand(): string + { + // schema generation does not support. + return ''; + } + + public function sqlLISTDATABASEColumn(): string + { + // schema generation does not support. + return ''; + } + + public function sqlCREATEUSERCommand(string $dbName, string $userEntity, string $password): string + { + // schema generation does not support. + return ''; + } } diff --git a/src/php/DB/Support/DB_PDO_SQLite_Handler.php b/src/php/DB/Support/DB_PDO_SQLite_Handler.php index e6101f02d..d19fbfc01 100644 --- a/src/php/DB/Support/DB_PDO_SQLite_Handler.php +++ b/src/php/DB/Support/DB_PDO_SQLite_Handler.php @@ -330,4 +330,22 @@ public function authSupportCanMigrateSHA256Hash(string $userTable, string $hashT } return $returnValue; } + + public function sqlLISTDATABASECommand(): string + { + // schema generation does not support. + return ''; + } + + public function sqlLISTDATABASEColumn(): string + { + // schema generation does not support. + return ''; + } + + public function sqlCREATEUSERCommand(string $dbName, string $userEntity, string $password): string + { + // schema generation does not support. + return ''; + } }