Class | Description |
---|---|
Driver |
Scriptella Adapter for MySQL database.
|
See Overview of JDBC package for a description of common features and connection properties.
Driver class: | scriptella.driver.mysql.Driver |
URL: | Same as for MySQL JDBC Driver. |
Runtime dependencies: | mysql-connector-java.jar |
Name | Description | Required |
---|---|---|
statement.fetchSize | For MySQL, set the value of this property to Integer.MIN_VALUE, in order to avoid loading all rows into memory:
See MySQL bug #18148.
|
No, default value is determined by Connector/J JDBC driver. |
<connection driver="mysql" url="jdbc:mysql://localhost:3306/test" user="username" password="password">
</connection>
The following example specifies a custom delimiter for statements.
This feature is similar to MySQL client ""DELIMITER" command.
<connection driver="mysql" url="jdbc:mysql://localhost:3306/test" user="username" password="password">
statement.separator=$$
</connection>
Copyright © Copyright 2006-2019 The Scriptella Project Team.