Schnittstelle IQueryCreator

Alle bekannten Implementierungsklassen:
QueryCreator

public interface IQueryCreator
Version:
2024-12-19
Autor:
Silvan Wyss
  • Methodendetails

    • createQueryToGetTableCount

      String createQueryToGetTableCount()
      Gibt zurück:
      a query to get number of tables.
    • createQueryToLoadCoumnsByTableId

      String createQueryToLoadCoumnsByTableId(String tableId)
      Parameter:
      tableId -
      Gibt zurück:
      a query to load the columns of the table with the given tableId.
    • createQueryToLoadColumnsByTableName

      String createQueryToLoadColumnsByTableName(String tableName)
      Parameter:
      tableName -
      Gibt zurück:
      a query to load the columns of the table with the given tableName.
    • createQueryToLoadFlatTableById

      String createQueryToLoadFlatTableById(String id)
      Parameter:
      id -
      Gibt zurück:
      a query to load the flat table with the given id.
    • createQueryToLoadFlatTableByName

      String createQueryToLoadFlatTableByName(String name)
      Parameter:
      name -
      Gibt zurück:
      a query to load the flat table with the given name.
    • createQueryToLoadFlatTables

      String createQueryToLoadFlatTables()
      Gibt zurück:
      a query to load the flat tables.
    • createQueryToLoadSchemaTimestamp

      String createQueryToLoadSchemaTimestamp()
      Gibt zurück:
      a query to load the schema timestamp.