public abstract class DbSettings extends Object
Allows to specify settings to read from project database.
| Modifier and Type | Method and Description |
|---|---|
String |
getConnectionString()
Gets the connection string.
|
String |
getDriverClassName()
Returns a name of JDBC driver class.
|
void |
setConnectionString(String value)
Sets the connection string.
|
void |
setDriverClassName(String value)
Sets a name of JDBC driver class.
|
public final String getConnectionString()
Gets the connection string.
public final void setConnectionString(String value)
Sets the connection string.
value - the connection string.public final String getDriverClassName()
Returns a name of JDBC driver class. The default driver class name is "com.microsoft.jdbc.sqlserver.SQLServerDriver"
public final void setDriverClassName(String value)
Sets a name of JDBC driver class. The default driver class name is "com.microsoft.jdbc.sqlserver.SQLServerDriver"
value - a name of JDBC driver class.