prepare($sql); // Выполняю запрос $stmt->execute(['tableName' => $tableName]); // Получаю количество таблиц, если = "true", то вывожу true, иначе - false return $stmt->fetchColumn() === 'true'; } public function CreateTable (PDO $handle, string $tableName, DataBaseHeader $columns): bool { // TODO: Implement CreateTable() method. return false; } public function DropTable (PDO $handle, string $tableName): bool { // TODO: Implement DropTable() method. return false; } }