Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
databasereferencecheatsheet [2022/01/02 23:06] wikiadmin [MySQL] |
databasereferencecheatsheet [2024/01/26 10:59] (current) amyw [SQL Server Express] |
||
---|---|---|---|
Line 3: | Line 3: | ||
This is a cheat sheet reference for configuration of the beans used in the Reporting package of MIStudio and TransSECS (see [[vibreportinganddatabaseserverbeansdocumentation|Reporting and Historical Servers]]). | This is a cheat sheet reference for configuration of the beans used in the Reporting package of MIStudio and TransSECS (see [[vibreportinganddatabaseserverbeansdocumentation|Reporting and Historical Servers]]). | ||
- | In the references below, substitute " | + | In the references below, substitute " |
<note important> | <note important> | ||
Line 15: | Line 15: | ||
**Database URL**: < | **Database URL**: < | ||
+ | |||
+ | [[sql_server_express_connnection_tutorial|More information on configuring and using SQL Server Express for the jdbc driver]] | ||
Line 21: | Line 23: | ||
The latest community edition of the JDBC driver can be found at: https:// | The latest community edition of the JDBC driver can be found at: https:// | ||
+ | Note: The MariaDB driver (below) will also work for MySQL | ||
**Database Driver Class**: com.mysql.cj.jdbc.Driver (this has changed, but older drivers will use com.mysql.jdbc.Driver) | **Database Driver Class**: com.mysql.cj.jdbc.Driver (this has changed, but older drivers will use com.mysql.jdbc.Driver) | ||
Line 27: | Line 30: | ||
or, with parameters, such as: | or, with parameters, such as: | ||
| | ||
+ | |||
+ | ====MariaDB==== | ||
+ | |||
+ | get the latest JDBC driver: https:// | ||
+ | |||
+ | **Database Driver Class**: org.mariadb.jdbc.Driver | ||
+ | |||
+ | **Database URL**: < | ||
+ | or, with parameters, such as: | ||
+ | | ||
+ | |||
+ | ====PostgreSQL==== | ||
+ | get the latest JDBC driver: https:// | ||
+ | **Database Driver Class**: org.postgresql.Driver | ||
+ | |||
+ | **Database URL**: < | ||
+ | or, with parameters, such as: | ||
+ | | ||
+ | |||
+ | ====HSQLDB==== | ||
+ | |||
+ | HSQLDB is a file based database, so the format of the URL will not include the " | ||
+ | |||
+ | get the latest JDBC driver: https:// | ||
+ | |||
+ | see also: http:// | ||
+ | |||
+ | **Database Driver Class**: org.hsqldb.jdbc.JDBCDriver | ||
+ | |||
+ | **Database URL**: < | ||
+ | |||
+ | ====SQLite==== | ||
+ | |||
+ | SQLite is a file based database, so the format of the URL will not include the " | ||
+ | |||
+ | get the latest JDBC driver: https:// | ||
+ | |||
+ | **Database Driver Class**: org.sqlite.JDBC | ||
+ | |||
+ | **Database URL**: < | ||
+ | |||
+ | Note: usually add .sqlite to the file name for SQLite databases, so for example, db_name.sqlite | ||
+ | |||
+ | ====SQL Server Express==== | ||
+ | |||
+ | The latest JDBC driver could be found at: | ||
+ | |||
+ | [[https:// | ||
+ | |||
+ | JDBC needs to be a Jar in the “drivers” directory of the project. | ||
+ | |||
+ | {{: | ||
+ | |||
+ | Choose the first file " | ||
+ | |||
+ | close the project and reload it after adding the driver, or you can exit MIStudio and restart. | ||
+ | |||
+ | Set MIStudio to LIVE when connecting to the database. | ||
+ | |||
+ | |||
+ | **Database Driver Class:** com.microsoft.sqlserver.jdbc.SQLServerDriver | ||
+ | |||
+ | **Database URL: | ||
+ | |||
+ | jdbc: | ||
+ | | ||
+ | or with parameters, such as: | ||
+ | |||
+ | jdbc: | ||
+ | | ||