DBIモジュールというものがインストールされている必要あり。
・サンプルプログラム
use DBI;
$user = ‘●●●’;
$passwd = ‘▲▲▲’;
$db = DBI->connect(‘DBI:mysql:DB名:ドメイン名’, $user, $passwd);
#SQL文
$sth = $db->prepare(“SQL文”);
$sth_in ->execute;
$sth->finish;
$db->disconnect;
・参考URL
http://www.atmarkit.co.jp/flinux/rensai/mysql04/mysql04a.html
その他
コメント
納豆キャベツトライ