public class MSSQL2008DatabaseAdapter extends MSSQLDatabaseAdapter
| Constructor and Description |
|---|
MSSQL2008DatabaseAdapter() |
| Modifier and Type | Method and Description |
|---|---|
String |
getDescription() |
String |
getName() |
String |
getSelectStatement(String tableName,
String columnNames,
String whereClause,
String orderByClause,
Long limit,
Long offset)
Returns a SQL SELECT statement with the given clauses applied.
|
String |
getSelectStatement(String tableName,
String columnNames,
String whereClause,
String orderByClause,
Long limit,
Long offset,
String columnForPartitioning)
Returns a SQL SELECT statement with the given clauses applied.
|
getAlterTableStatements, unwrapIdentifierclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgenerateTableName, getColumnQuoteString, getCreateTableStatement, getInsertIgnoreStatement, getSQLForDataType, getTableAliasClause, getTableQuoteString, getTimesToAddColumnObjectsForUpsert, getUpsertStatement, supportsCreateTableIfNotExists, supportsInsertIgnore, supportsUpsertpublic String getName()
getName in interface DatabaseAdaptergetName in class MSSQLDatabaseAdapterpublic String getDescription()
getDescription in interface DatabaseAdaptergetDescription in class MSSQLDatabaseAdapterpublic String getSelectStatement(String tableName, String columnNames, String whereClause, String orderByClause, Long limit, Long offset)
DatabaseAdaptergetSelectStatement in interface DatabaseAdaptergetSelectStatement in class MSSQLDatabaseAdaptertableName - The name of the table to fetch rows fromcolumnNames - The names of the columns to fetch from the tablewhereClause - The filter to apply to the statement. This should not include the WHERE keywordorderByClause - The columns/clause used for ordering the result rows. This should not include the ORDER BY keywordslimit - The value for the LIMIT clause (i.e. the number of rows to return)offset - The value for the OFFSET clause (i.e. the number of rows to skip)public String getSelectStatement(String tableName, String columnNames, String whereClause, String orderByClause, Long limit, Long offset, String columnForPartitioning)
DatabaseAdaptergetSelectStatement in interface DatabaseAdaptergetSelectStatement in class MSSQLDatabaseAdaptertableName - The name of the table to fetch rows fromcolumnNames - The names of the columns to fetch from the tablewhereClause - The filter to apply to the statement. This should not include the WHERE keywordorderByClause - The columns/clause used for ordering the result rows. This should not include the ORDER BY keywordslimit - The value for the LIMIT clause (i.e. the number of rows to return)offset - The value for the OFFSET clause (i.e. the number of rows to skip)columnForPartitioning - The (optional) column name that, if provided, the limit and offset values are based on values from the column itself (rather than the row number)Copyright © 2023 Apache NiFi Project. All rights reserved.