feat: initialize backend database service architecture and implement frontend schema explorer components
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user