summaryrefslogtreecommitdiffstats
path: root/conf.rb
blob: 1d84cee178106e13d6ac6ad384b324092eb8e203 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# encoding: utf-8
MySQL = { "host"   => "localhost",
          "db"     => "RuDynFrame",
          "user"   => "RuDynFrame",
          "passwd" => "RuDynFrame"
        }

$RepBase = ""
$Titre = "RuDynFrame"
$Commentaires = true

$db = DBI.connect("DBI:Mysql:" + MySQL["db"] + ":" + MySQL["host"], MySQL["user"], MySQL["passwd"])
$db.execute("SET NAMES 'utf8'")
$db.execute("SET lc_time_names = 'fr_FR'")