announce support pg

This commit is contained in:
xiaomlove
2026-04-18 12:15:14 +07:00
parent e3376c3f1b
commit 4afcb1bb08
9 changed files with 73 additions and 14 deletions
+4
View File
@@ -1,6 +1,8 @@
<?php
namespace Nexus\Database;
use PDOStatement;
interface DBInterface
{
public function connect($host, $username, $password, $database, $port, $driver = 'mysql');
@@ -29,4 +31,6 @@ interface DBInterface
public function freeResult($result);
public function prepare(string $sql): PDOStatement;
}