Last active
August 3, 2024 00:43
-
-
Save Be1zebub/35726658cec2aef45454a33b29999e3a to your computer and use it in GitHub Desktop.
Script that I use for testing sql connections
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$HOST = "1.1.1.1"; | |
$DATABASE = "xxx"; | |
$USER = "xxx"; | |
$PASSWORD = "xxx"; | |
$TIMEOUT = 5; | |
$dsn = "mysql:host={$HOST};dbname={$DATABASE};charset=utf8"; | |
$opt = Array( | |
PDO::ATTR_TIMEOUT => $TIMEOUT, | |
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION | |
); | |
try { | |
$db = new PDO($dsn, $USER, $PASSWORD, $opt); | |
} catch (PDOException $e) { | |
die($e->getMessage()); | |
} finally { | |
echo("success\n"); | |
$smt = $db->query("SELECT table_name FROM information_schema.tables;"); | |
print_r($smt->fetchAll(PDO::FETCH_COLUMN)); | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment