123456789101112131415161718192021222324252627 |
- description=MySQL
- connectionSpec=jdbc:mysql://<host>/<db>
- host=hostname[:port] host where database resides with optional port
- db=database name
- driver=com.mysql.jdbc.Driver
- driverPath=/mysql/mysql-connector-java-5.1.6-bin.jar
- selectTableCommentsSql=select table_name, table_comment comments from information_schema.tables where table_schema=:schema
- selectRowCountSql=select table_rows row_count from information_schema.tables where table_name=:table
|