Struct.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?php
  2. namespace inter\mysqlStruct;
  3. use Exception;
  4. use inter\mysqlStruct\Column;
  5. use inter\mysqlStruct\Database;
  6. use inter\mysqlStruct\Table;
  7. use inter\storage\mysql\DB;
  8. use PDO;
  9. class Struct
  10. {
  11. private DB $db;
  12. private string $database = "";
  13. // 使用的表
  14. private array $useTables;
  15. public function __construct(DB $db)
  16. {
  17. $this->db = $db;
  18. }
  19. public function AddUseTable(string $tableName): self
  20. {
  21. $this->useTables[$tableName] = true;
  22. return $this;
  23. }
  24. public function SelectDatabase(string $database): self
  25. {
  26. $this->database = $database;
  27. return $this;
  28. }
  29. public function GetDatabase(): Database
  30. {
  31. // 获取表的表字段
  32. try {
  33. $stmt = $this->db->query("SELECT COLUMN_NAME, DATA_TYPE, IS_NULLABLE, COLUMN_KEY, c.`TABLE_NAME`, c.`COLUMN_COMMENT`
  34. FROM INFORMATION_SCHEMA.COLUMNS c
  35. WHERE TABLE_SCHEMA = '{$this->database}';");
  36. $data = $stmt->fetchAll(PDO::FETCH_ASSOC);
  37. } catch (Exception $e) {
  38. throw new Exception("查询数据库表结构失败: " + $e->getMessage());
  39. }
  40. $database = new Database($this->database);
  41. $tablesMap = [];
  42. foreach ($data as $row) {
  43. if (!empty($this->useTables) && !isset($this->useTables[$row['TABLE_NAME']])) {
  44. continue;
  45. }
  46. if (empty($tablesMap[$row['TABLE_NAME']])) {
  47. $table = new Table();
  48. $database->AddTable($table);
  49. $table->SetName($row['TABLE_NAME']);
  50. $tablesMap[$row['TABLE_NAME']] = &$table;
  51. }
  52. $column = new Column();
  53. $column->SetName($row['COLUMN_NAME'])
  54. ->SetComment($row['COLUMN_COMMENT'])
  55. ->SetType($row['DATA_TYPE'])
  56. ->SetKeyType($row['COLUMN_KEY']);
  57. $tablesMap[$row['TABLE_NAME']]->AddColumn($column);
  58. }
  59. return $database;
  60. }
  61. }