• 追加された行はこの色です。
  • 削除された行はこの色です。
* 接続/切断 [#g4349098]

** DSN [#l7129823]
 # MySQL
 $dsn = "DBI:mysql:database=$database;host=$hostname;port=$port";
 
 # PostgreSQL
 $dsn = "dbi:Pg:dbname=$dbname;host=$host;port=$port";
 
 # SQLite
 $dsn = "dbi:SQLite:dbname=dbfile";
 $dsn = "dbi:SQLite:dbfile.db";

** 接続/切断 [#pdcbd776]
 $dbh = DBI->connect($dsn, $user, $pass, {RaiseError=>0,PrintError=>1,AutoCommit=>1}) 
   or die $DBI::errstr;
 $dbh->disconnect;


トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS