|
|||||||||
| 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 String |
DATABASENAME
Database name of this platform. |
static String |
JDBC_DRIVER
The standard SQLServer jdbc driver. |
static String |
JDBC_DRIVER_NEW
The new SQLServer 2005 jdbc driver which can also be used for SQL Server 2000. |
static String |
JDBC_SUBPROTOCOL
The subprotocol used by the standard SQL Server driver. |
static String |
JDBC_SUBPROTOCOL_INTERNAL
The subprotocol internally returned by the newer SQL Server 2005 driver. |
static 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(Connection connection,
Table table)
Allows platforms to issue statements directly after rows have been inserted into the specified table. |
protected void |
afterUpdate(Connection connection,
Table table)
Allows platforms to issue statements directly after rows have been updated in the specified table. |
protected void |
beforeInsert(Connection connection,
Table table)
Allows platforms to issue statements directly before rows are inserted into the specified table. |
protected void |
beforeUpdate(Connection connection,
Table table)
Allows platforms to issue statements directly before rows are updated in the specified table. |
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 String DATABASENAME
public static final String JDBC_DRIVER
public static final String JDBC_DRIVER_NEW
public static final String JDBC_SUBPROTOCOL
public static final String JDBC_SUBPROTOCOL_NEW
public static final String JDBC_SUBPROTOCOL_INTERNAL
| Constructor Detail |
|---|
public MSSqlPlatform()
| Method Detail |
|---|
public String getName()
protected void beforeInsert(Connection connection,
Table table)
throws SQLException
beforeInsert in class PlatformImplBaseconnection - The connection used for the insertiontable - The table that the rows are inserted into
SQLException
protected void afterInsert(Connection connection,
Table table)
throws SQLException
afterInsert in class PlatformImplBaseconnection - The connection used for the insertiontable - The table that the rows have been inserted into
SQLException
protected void beforeUpdate(Connection connection,
Table table)
throws SQLException
beforeUpdate in class PlatformImplBaseconnection - The connection used for the updatetable - The table that the rows are updateed into
SQLException
protected void afterUpdate(Connection connection,
Table table)
throws SQLException
afterUpdate in class PlatformImplBaseconnection - The connection used for the updatetable - The table that the rows have been updateed into
SQLException
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||