org.apache.ddlutils.platform.firebird
Class FirebirdPlatform

java.lang.Object
  extended byorg.apache.ddlutils.util.JdbcSupport
      extended byorg.apache.ddlutils.platform.PlatformImplBase
          extended byorg.apache.ddlutils.platform.firebird.FirebirdPlatform
All Implemented Interfaces:
Platform

public class FirebirdPlatform
extends PlatformImplBase

The platform implementation for the Firebird database. It is assumed that the database is configured with sql dialect 3!

Version:
$Revision: 231306 $
Author:
Thomas Dudziak, Martin van den Bemt

Field Summary
static String DATABASENAME
          Database name of this platform.
static String JDBC_DRIVER
          The standard Firebird jdbc driver.
static String JDBC_SUBPROTOCOL
          The subprotocol used by the standard Firebird driver.
 
Constructor Summary
FirebirdPlatform()
          Creates a new Firebird platform instance.
 
Method Summary
 int evaluateBatch(Connection connection, String sql, boolean continueOnError)
          Firebird-specific replacement for PlatformImplBase.evaluateBatch(Connection, String, boolean) that executes blocks delimited by the term FirebirdBuilder.TERM_COMMAND (defined in the database via SET TERM !!;), in one go.
 String getName()
          Returns the name of the database that this platform is for.
 
Methods inherited from class org.apache.ddlutils.platform.PlatformImplBase
alterTables, alterTables, alterTables, alterTables, alterTables, alterTables, alterTables, alterTables, createDatabase, createDeleteSql, createInsertSql, createResultSetIterator, createSelectLastInsertIdSql, createTables, createTables, createTables, createTables, createUpdateSql, delete, delete, dropDatabase, dropTables, dropTables, evaluateBatch, exists, fetch, fetch, fetch, fetch, fetch, fetch, fetch, fetch, getAlterTablesSql, getAlterTablesSql, getAlterTablesSql, getAlterTablesSql, getAlterTablesSql, getAlterTablesSql, getAlterTablesSql, getAlterTablesSql, getCreateTablesSql, getCreateTablesSql, getDeleteSql, getDropTablesSql, getInsertSql, getLog, getModelReader, getObjectFromResultSet, getPlatformInfo, getSqlBuilder, getUpdateSql, insert, insert, insert, insert, logWarnings, postprocessModelFromDatabase, query, query, query, query, readModelFromDatabase, readModelFromDatabase, readModelFromDatabase, readModelFromDatabase, setModelReader, setObject, setSqlBuilder, shutdownDatabase, shutdownDatabase, store, toColumnValues, update, update
 
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

DATABASENAME

public static final String DATABASENAME
Database name of this platform.

See Also:
Constant Field Values

JDBC_DRIVER

public static final String JDBC_DRIVER
The standard Firebird jdbc driver.

See Also:
Constant Field Values

JDBC_SUBPROTOCOL

public static final String JDBC_SUBPROTOCOL
The subprotocol used by the standard Firebird driver.

See Also:
Constant Field Values
Constructor Detail

FirebirdPlatform

public FirebirdPlatform()
Creates a new Firebird platform instance.

Method Detail

getName

public String getName()
Returns the name of the database that this platform is for.

Returns:
The name

evaluateBatch

public int evaluateBatch(Connection connection,
                         String sql,
                         boolean continueOnError)
                  throws DynaSqlException
Firebird-specific replacement for PlatformImplBase.evaluateBatch(Connection, String, boolean) that executes blocks delimited by the term FirebirdBuilder.TERM_COMMAND (defined in the database via SET TERM !!;), in one go.

Specified by:
evaluateBatch in interface Platform
Overrides:
evaluateBatch in class PlatformImplBase
Parameters:
connection - The connection to use
sql - The sql to process
continueOnError - Whether to continue when an error occurs
Returns:
The number of errors
Throws:
DynaSqlException


Copyright © 2005 Apache Software Foundation. All Rights Reserved.