2013-03-02から1日間の記事一覧

DB

■mysql接続 use DBI qw(:sql_types); $dbh = DBI->connect('DBI:mysql:データベース名:ホスト名:ポート','ユーザーID','パス'); $dbh->do("set names utf8"); // クライアントの文字セット $sth = $dbh->prepare("select * from t1 where id=? and name=?"); $sth->…