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
+8
View File
@@ -82,4 +82,12 @@ class DatabaseService
{
return $this->getDriver()->getTableData($table, $limit, $offset);
}
/**
* Get table row count.
*/
public function getTableCount(string $table): int
{
return $this->getDriver()->getTableCount($table);
}
}