Qore SqlUtil Module Reference
1.7.5
|
the base class for column information More...
Public Member Methods | |
bool | equal (AbstractColumn c) |
returns True if the argument is equal to the current object, False if not | |
abstract list< auto > | getAddColumnSql (AbstractTable t) |
returns a list of sql strings that can be used to add the column to an existing table More... | |
string | getCreateSql (AbstractTable t) |
returns an sql string that can be used to add the column to a table | |
hash< GenericColumnInfo > | getDescriptionHash () |
Returns a description hash of the column. More... | |
string | getDropSql (string table_name) |
returns a string that can be used to drop the column from the table | |
list< auto > | getModifySql (AbstractTable t, AbstractColumn c, *hash< auto > opt) |
returns a list of sql strings that can be used to modify the column to the new definition; if the column definitions are identical then an empty list is returned More... | |
string | getNativeTypeString () |
returns the string describing the native type that can be used in SQL More... | |
abstract string | getRenameSql (AbstractTable t, string new_name) |
returns a string that can be used to rename the column More... | |
Public Member Methods inherited from SqlUtil::AbstractDdlObject | |
constructor (string name) | |
creates the object from the name | |
abstract string | getDdlName (string name) |
returns the column name with quoting in case the column name is a reserved word More... | |
Public Attributes | |
*string | comment |
comment on the column | |
*string | def_val |
default value for column | |
const | DefaultVarcharSize = 80 |
Default VARCHAR column size. | |
string | native_type |
the native type name of the column | |
bool | nullable |
True if the column can hold a NULL value, False if not | |
*string | qore_type |
the equivalent qore type name of the column if known | |
*int | scale |
the scale for numeric columns | |
int | size |
the size of the column | |
Public Attributes inherited from SqlUtil::AbstractDdlObject | |
string | ddl_name |
the name of the object for DDL (in case it's a reserved word) | |
string | name |
the name of the object | |
Private Member Methods | |
constructor () | |
empty constructor for subclasses | |
abstract bool | equalImpl (AbstractColumn c) |
returns True if the argument is equal to the current object, False if not | |
abstract list< auto > | getModifySqlImpl (AbstractTable t, AbstractColumn c, *hash< auto > opt) |
returns a list of sql strings that can be used to modify the column to the new definition More... | |
Private Member Methods inherited from SqlUtil::AbstractDdlObject | |
constructor () | |
empty constructor for subclasses | |
the base class for column information
|
pure virtual |
returns a list of sql strings that can be used to add the column to an existing table
t | the AbstractTable object to modify |
hash<GenericColumnInfo> SqlUtil::AbstractColumn::getDescriptionHash | ( | ) |
Returns a description hash of the column.
list<auto> SqlUtil::AbstractColumn::getModifySql | ( | AbstractTable | t, |
AbstractColumn | c, | ||
*hash< auto > | opt | ||
) |
returns a list of sql strings that can be used to modify the column to the new definition; if the column definitions are identical then an empty list is returned
The column names are assumed to be equal.
t | the AbstractTable object to modify |
c | the new column definition |
opt | column modification options (if supported by the underlying driver) |
|
privatepure virtual |
returns a list of sql strings that can be used to modify the column to the new definition
If the column definitions are identical then an empty list is returned
The column names are assumed to be equal.
t | the AbstractTable object to modify |
c | the new column definition |
opt | column modification options (if supported by the underlying driver) |
string SqlUtil::AbstractColumn::getNativeTypeString | ( | ) |
returns the string describing the native type that can be used in SQL
for example to add the colunn to a table or when creating the table
|
pure virtual |
returns a string that can be used to rename the column
t | the AbstractTable object to modify |
new_name | the new name for the column |