1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #
- # Database settings file
- #
- # The currently available driver types are:
- # [Driver Type] [Description]
- # QDB2 IBM DB2
- # QIBASE Borland InterBase Driver
- # QMYSQL MySQL Driver
- # QOCI Oracle Call Interface Driver
- # QODBC ODBC Driver (includes Microsoft SQL Server)
- # QPSQL PostgreSQL Driver
- # QSQLITE SQLite version 3 or above
- # QSQLITE2 SQLite version 2
- #
- # In case of SQLite, specify the DB file path to DatabaseName as follows;
- # DatabaseName=db/dbfile
- [dev]
- DriverType=QMYSQL
- DatabaseName=hello_world
- HostName=tfb-database
- Port=
- UserName=benchmarkdbuser
- Password=benchmarkdbpass
- ConnectOptions=
- [test]
- DriverType=QMYSQL
- DatabaseName=hello_world
- HostName=tfb-database
- Port=
- UserName=benchmarkdbuser
- Password=benchmarkdbpass
- ConnectOptions=
- [product]
- DriverType=QMYSQL
- DatabaseName=hello_world
- HostName=tfb-database
- Port=
- UserName=benchmarkdbuser
- Password=benchmarkdbpass
- ConnectOptions=
|