blob: 84752b436f099ded96812ba3f9d02e3819f56a6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/**
* The db_ido_mysql library implements IDO functionality
* for MySQL.
*/
library "db_ido_mysql"
object IdoMysqlConnection "ido-mysql" {
user = "_DBC_DBUSER_",
password = "_DBC_DBPASS_",
host = "_DBC_DBSERVER_",
database = "_DBC_DBNAME_"
}
|