Skip to content

Commit

Permalink
Missing abstract methods defined.
Browse files Browse the repository at this point in the history
  • Loading branch information
msyk committed Nov 25, 2023
1 parent 9fe4752 commit 0d00ab0
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/php/DB/Support/DB_PDO_SQLServer_Handler.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 '';
}
}
18 changes: 18 additions & 0 deletions src/php/DB/Support/DB_PDO_SQLite_Handler.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 '';
}
}

0 comments on commit 0d00ab0

Please sign in to comment.