1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
[BerkeleyDB.1]
dsn = dbi:BerkeleyDB:
active = 1
use_for_testing = 1
[File.1]
dsn = dbi:File:
active = 1
use_for_testing = 1
[memcached.1]
dsn = dbi:Memcached:
active = 1
use_for_testing = 1
[mysql.1]
dsn = dbi:mysql:database=test
username = testuser
password = testpass
attributes = {AutoCommit => 1, PrintError => 0, RaiseError => 1}
active = 1
use_for_testing = 1
[Pg.1]
dsn = dbi:Pg:dbname=test
username = testuser
password = testpass
attributes = {AutoCommit => 1, PrintError => 0, RaiseError => 1}
active = 1
use_for_testing = 1
[SQLite.1]
dsn = dbi:SQLite:dbname=/tmp/sessions.sqlite
attributes = {AutoCommit => 1, PrintError => 0, RaiseError => 1}
active = 1
use_for_testing = 1
|