|
@@ -23,7 +23,8 @@ return array(
|
|
"user" => "benchmarkdbuser", // benchmarkdbuser
|
|
"user" => "benchmarkdbuser", // benchmarkdbuser
|
|
"password" => "benchmarkdbpass", // benchmarkdbpass
|
|
"password" => "benchmarkdbpass", // benchmarkdbpass
|
|
"options" => [
|
|
"options" => [
|
|
- \PDO::ATTR_EMULATE_PREPARES => false
|
|
|
|
|
|
+ \PDO::ATTR_EMULATE_PREPARES => false,
|
|
|
|
+ 'quote' => ''
|
|
],
|
|
],
|
|
"cache" => false
|
|
"cache" => false
|
|
],
|
|
],
|
|
@@ -35,6 +36,19 @@ return array(
|
|
"port" => 5432,
|
|
"port" => 5432,
|
|
"user" => "benchmarkdbuser", // benchmarkdbuser
|
|
"user" => "benchmarkdbuser", // benchmarkdbuser
|
|
"password" => "benchmarkdbpass", // benchmarkdbpass
|
|
"password" => "benchmarkdbpass", // benchmarkdbpass
|
|
|
|
+ "options" => [
|
|
|
|
+ 'quote' => ''
|
|
|
|
+ ],
|
|
|
|
+ "cache" => false
|
|
|
|
+ ],
|
|
|
|
+ 'mongo' => [
|
|
|
|
+ "wrapper" => "\\Ubiquity\\db\\providers\\MongoDbWrapper",
|
|
|
|
+ "type" => "mongo",
|
|
|
|
+ "dbName" => "hello_world",
|
|
|
|
+ "serverName" => "tfb-database", // tfb-database
|
|
|
|
+ "port" => 27017,
|
|
|
|
+ "user" => "", // benchmarkdbuser
|
|
|
|
+ "password" => "", // benchmarkdbpass
|
|
"options" => [],
|
|
"options" => [],
|
|
"cache" => false
|
|
"cache" => false
|
|
]
|
|
]
|