feat: initialize backend database service architecture and implement frontend schema explorer components

This commit is contained in:
Ümit Tunç
2026-04-24 07:31:24 +03:00
parent ce67df1067
commit bf3d05ea97
13 changed files with 366 additions and 71 deletions
@@ -24,6 +24,11 @@ interface DatabaseDriverInterface
*/
public function getTableData(string $table, int $limit = 100, int $offset = 0): array;
/**
* Get the count of rows in a table.
*/
public function getTableCount(string $table): int;
/**
* Get the underlying connection instance.
*/