Class SQLiteDatabaseMeta

java.lang.Object
org.pentaho.di.core.database.BaseDatabaseMeta
org.pentaho.di.core.database.SQLiteDatabaseMeta
All Implemented Interfaces:
Cloneable, DatabaseInterface, DatabaseInterfaceExtended

public class SQLiteDatabaseMeta extends BaseDatabaseMeta implements DatabaseInterface
Contains SQLite specific information through static final members
Since:
11-mrt-2005
Author:
Matt
  • Constructor Details

    • SQLiteDatabaseMeta

      public SQLiteDatabaseMeta()
  • Method Details

    • getAccessTypeList

      public int[] getAccessTypeList()
      Description copied from interface: DatabaseInterface
      Get the list of possible access types for a database.
      Specified by:
      getAccessTypeList in interface DatabaseInterface
      Specified by:
      getAccessTypeList in class BaseDatabaseMeta
      Returns:
      the list of possible access types for a database.
    • getNotFoundTK

      public int getNotFoundTK(boolean useAutoinc)
      Description copied from interface: DatabaseInterface
      Get the not found technical key.
      Specified by:
      getNotFoundTK in interface DatabaseInterface
      Overrides:
      getNotFoundTK in class BaseDatabaseMeta
      Parameters:
      useAutoinc - Whether or not we want to use an auto increment field
      Returns:
      the lowest possible technical key to be used as the NOT FOUND row in a slowly changing dimension.
      See Also:
    • getDriverClass

      public String getDriverClass()
      Description copied from interface: DatabaseInterface
      Obtain the name of the JDBC driver class that we need to use!
      Specified by:
      getDriverClass in interface DatabaseInterface
      Returns:
      the name of the JDBC driver class for the specific database
    • getURL

      public String getURL(String hostname, String port, String databaseName)
      Specified by:
      getURL in interface DatabaseInterface
      Parameters:
      hostname - the hostname
      port - the port as a string
      databaseName - the database name
      Returns:
      the URL to use for connecting to the database.
    • isFetchSizeSupported

      public boolean isFetchSizeSupported()
      Checks whether or not the command setFetchSize() is supported by the JDBC driver...
      Specified by:
      isFetchSizeSupported in interface DatabaseInterface
      Overrides:
      isFetchSizeSupported in class BaseDatabaseMeta
      Returns:
      true is setFetchSize() is supported!
    • getSchemaTableCombination

      public String getSchemaTableCombination(String schemaName, String tablePart)
      Description copied from class: BaseDatabaseMeta
      Get the schema-table combination to query the right table. Usually that is SCHEMA.TABLENAME, however there are exceptions to this rule...
      Specified by:
      getSchemaTableCombination in interface DatabaseInterface
      Overrides:
      getSchemaTableCombination in class BaseDatabaseMeta
      Parameters:
      schemaName - The schema name
      tablePart - The tablename
      Returns:
      the schema-table combination to query the right table.
      See Also:
    • supportsBitmapIndex

      public boolean supportsBitmapIndex()
      Specified by:
      supportsBitmapIndex in interface DatabaseInterface
      Overrides:
      supportsBitmapIndex in class BaseDatabaseMeta
      Returns:
      true if the database supports bitmap indexes
    • getTruncateTableStatement

      public String getTruncateTableStatement(String tableName)
      Specified by:
      getTruncateTableStatement in interface DatabaseInterface
      Overrides:
      getTruncateTableStatement in class BaseDatabaseMeta
      Parameters:
      tableName - The table to be truncated.
      Returns:
      The SQL statement to truncate a table: remove all rows from it without a transaction
    • getAddColumnStatement

      public String getAddColumnStatement(String tablename, ValueMetaInterface v, String tk, boolean useAutoinc, String pk, boolean semicolon)
      Generates the SQL statement to add a column to the specified table For this generic type, i set it to the most common possibility.
      Specified by:
      getAddColumnStatement in interface DatabaseInterface
      Parameters:
      tablename - The table to add
      v - The column defined as a value
      tk - the name of the technical key field
      useAutoinc - whether or not this field uses auto increment
      pk - the name of the primary key field
      semicolon - whether or not to add a semi-colon behind the statement.
      Returns:
      the SQL statement to add a column to the specified table
    • getModifyColumnStatement

      public String getModifyColumnStatement(String tablename, ValueMetaInterface v, String tk, boolean useAutoinc, String pk, boolean semicolon)
      Generates the SQL statement to modify a column in the specified table
      Specified by:
      getModifyColumnStatement in interface DatabaseInterface
      Parameters:
      tablename - The table to add
      v - The column defined as a value
      tk - the name of the technical key field
      useAutoinc - whether or not this field uses auto increment
      pk - the name of the primary key field
      semicolon - whether or not to add a semi-colon behind the statement.
      Returns:
      the SQL statement to modify a column in the specified table
    • getFieldDefinition

      public String getFieldDefinition(ValueMetaInterface v, String tk, String pk, boolean useAutoinc, boolean addFieldName, boolean addCr)
      Description copied from interface: DatabaseInterface
      Describe a Value as a field in the database.
      Specified by:
      getFieldDefinition in interface DatabaseInterface
      Parameters:
      v - The value to describe
      tk - The field that's going to be the technical key
      pk - The field that's going to be the primary key
      useAutoinc - Use autoincrement or not
      addFieldName - Add the fieldname to the definition or not
      addCr - Add a cariage return at the end of the definition or not.
      Returns:
      a value described as a field in this database.
    • supportsGetBlob

      public boolean supportsGetBlob()
      Specified by:
      supportsGetBlob in interface DatabaseInterface
      Overrides:
      supportsGetBlob in class BaseDatabaseMeta
      Returns:
      true if the database JDBC driver supports getBlob on the resultset. If not we must use getBytes() to get the data.
    • getUsedLibraries

      public String[] getUsedLibraries()
      Specified by:
      getUsedLibraries in interface DatabaseInterface
      Returns:
      the required libraries (in lib) for this database connection.
    • supportsErrorHandling

      public boolean supportsErrorHandling()
      Specified by:
      supportsErrorHandling in interface DatabaseInterface
      Overrides:
      supportsErrorHandling in class BaseDatabaseMeta
      Returns:
      true if the database supports error handling (the default). Returns false for certain databases (SQLite) that invalidate a prepared statement or even the complete connection when an error occurs.