|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.ddlutils.util.JdbcSupport
org.apache.ddlutils.platform.PlatformImplBase
org.apache.ddlutils.platform.mssql.MSSqlPlatform
public class MSSqlPlatform
The platform implementation for the Microsoft SQL Server database.
Field Summary | |
---|---|
static java.lang.String |
DATABASENAME
Database name of this platform. |
static java.lang.String |
JDBC_DRIVER
The standard SQLServer jdbc driver. |
static java.lang.String |
JDBC_DRIVER_NEW
The new SQLServer 2005 jdbc driver which can also be used for SQL Server 2000. |
static java.lang.String |
JDBC_SUBPROTOCOL
The subprotocol used by the standard SQL Server driver. |
static java.lang.String |
JDBC_SUBPROTOCOL_INTERNAL
The subprotocol internally returned by the newer SQL Server 2005 driver. |
static java.lang.String |
JDBC_SUBPROTOCOL_NEW
The subprotocol recommended for the newer SQL Server 2005 driver. |
Fields inherited from class org.apache.ddlutils.platform.PlatformImplBase |
---|
MODEL_DEFAULT_NAME |
Constructor Summary | |
---|---|
MSSqlPlatform()
Creates a new platform instance. |
Method Summary | |
---|---|
protected void |
afterInsert(java.sql.Connection connection,
Table table)
Allows platforms to issue statements directly after rows have been inserted into the specified table. |
protected void |
afterUpdate(java.sql.Connection connection,
Table table)
Allows platforms to issue statements directly after rows have been updated in the specified table. |
protected void |
beforeInsert(java.sql.Connection connection,
Table table)
Allows platforms to issue statements directly before rows are inserted into the specified table. |
protected void |
beforeUpdate(java.sql.Connection connection,
Table table)
Allows platforms to issue statements directly before rows are updated in the specified table. |
java.lang.String |
getName()
Returns the name of the database that this platform is for. |
Methods inherited from class org.apache.ddlutils.util.JdbcSupport |
---|
borrowConnection, closeStatement, getDataSource, getPassword, getUsername, returnConnection, setDataSource, setPassword, setUsername |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface org.apache.ddlutils.Platform |
---|
borrowConnection, getDataSource, getPassword, getUsername, returnConnection, setDataSource, setPassword, setUsername |
Field Detail |
---|
public static final java.lang.String DATABASENAME
public static final java.lang.String JDBC_DRIVER
public static final java.lang.String JDBC_DRIVER_NEW
public static final java.lang.String JDBC_SUBPROTOCOL
public static final java.lang.String JDBC_SUBPROTOCOL_NEW
public static final java.lang.String JDBC_SUBPROTOCOL_INTERNAL
Constructor Detail |
---|
public MSSqlPlatform()
Method Detail |
---|
public java.lang.String getName()
protected void beforeInsert(java.sql.Connection connection, Table table) throws java.sql.SQLException
beforeInsert
in class PlatformImplBase
connection
- The connection used for the insertiontable
- The table that the rows are inserted into
java.sql.SQLException
protected void afterInsert(java.sql.Connection connection, Table table) throws java.sql.SQLException
afterInsert
in class PlatformImplBase
connection
- The connection used for the insertiontable
- The table that the rows have been inserted into
java.sql.SQLException
protected void beforeUpdate(java.sql.Connection connection, Table table) throws java.sql.SQLException
beforeUpdate
in class PlatformImplBase
connection
- The connection used for the updatetable
- The table that the rows are updateed into
java.sql.SQLException
protected void afterUpdate(java.sql.Connection connection, Table table) throws java.sql.SQLException
afterUpdate
in class PlatformImplBase
connection
- The connection used for the updatetable
- The table that the rows have been updateed into
java.sql.SQLException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |