Makes or represents columns of a QueueSchema. More...
Public Member Functions | |
void | addBoolean (string columnName) |
Add a new BOOLEAN type column. See: ColumnType | |
void | addByte (string columnName) |
Add a new BYTE type column. See: ColumnType | |
void | addShort (string columnName) |
Add a new SHORT type column. See: ColumnType | |
void | addUShort (string columnName) |
Add a new USHORT type column. See: ColumnType | |
void | addInt (string columnName) |
Add a new INT type column. See: ColumnType | |
void | addLong (string columnName) |
Add a new LONG type column. See: ColumnType | |
void | addFloat (string columnName) |
Add a new FLOAT type column. See: ColumnType | |
void | addDouble (string columnName) |
Add a new DOUBLE type column. See: ColumnType | |
void | addDate (string columnName) |
Add a new DATE type column. See: ColumnType | |
void | addTime (string columnName) |
Add a new TIME type column. See: ColumnType | |
void | addDateTime (string columnName) |
Add a new DATETIME type column. See: ColumnType | |
void | addString (string columnName, int size) |
Add a new STRING type column. See: ColumnType | |
void | addVarString (string columnName) |
Add a new VAR_STRING type column. See: ColumnType | |
void | addBinary (string columnName, int size) |
Add a new BINARY type column. See: ColumnType | |
void | addVarBinary (string columnName) |
Add a new VAR_BINARY type column. See: ColumnType | |
List< Column > | getColumns () |
Get the column list a queue schema. | |
void | clear () |
Clear all the columns in a queue schema. | |
int | getMessageSize () |
Get the message size. It is a total size of columns of a queue schema. |
Makes or represents columns of a QueueSchema.
void MyCQ.QueueSchema.addBinary | ( | string | columnName, | |
int | size | |||
) |
Add a new BINARY type column. See: ColumnType
columnName | A column name that will be created in a queue schema. A column name is a combination of alphabets and numerics which starts with alphabet character. (size:= under 64). | |
size | An integer greater than zero that will be the size of BINARY type column. |
MyCQException | An error occurred. check error code. |
void MyCQ.QueueSchema.addBoolean | ( | string | columnName | ) |
Add a new BOOLEAN type column. See: ColumnType
columnName | A column name that will be created in a queue schema. A column name is a combination of alphabets and numerics which starts with alphabet character. (size:= under 64). |
MyCQException | An error occurred. check error code. |
void MyCQ.QueueSchema.addByte | ( | string | columnName | ) |
Add a new BYTE type column. See: ColumnType
columnName | A column name that will be created in a queue schema. A column name is a combination of alphabets and numerics which starts with alphabet character. (size:= under 64). |
MyCQException | An error occurred. check error code. |
void MyCQ.QueueSchema.addDate | ( | string | columnName | ) |
Add a new DATE type column. See: ColumnType
columnName | A column name that will be created in a queue schema. A column name is a combination of alphabets and numerics which starts with alphabet character. (size:= under 64). |
MyCQException | An error occurred. check error code. |
void MyCQ.QueueSchema.addDateTime | ( | string | columnName | ) |
Add a new DATETIME type column. See: ColumnType
columnName | A column name that will be created in a queue schema. A column name is a combination of alphabets and numerics which starts with alphabet character. (size:= under 64). |
MyCQException | An error occurred. check error code. |
void MyCQ.QueueSchema.addDouble | ( | string | columnName | ) |
Add a new DOUBLE type column. See: ColumnType
columnName | A column name that will be created in a queue schema. A column name is a combination of alphabets and numerics which starts with alphabet character. (size:= under 64). |
MyCQException | An error occurred. check error code. |
void MyCQ.QueueSchema.addFloat | ( | string | columnName | ) |
Add a new FLOAT type column. See: ColumnType
columnName | A column name that will be created in a queue schema. A column name is a combination of alphabets and numerics which starts with alphabet character. (size:= under 64). |
MyCQException | An error occurred. check error code. |
void MyCQ.QueueSchema.addInt | ( | string | columnName | ) |
Add a new INT type column. See: ColumnType
columnName | A column name that will be created in a queue schema. A column name is a combination of alphabets and numerics which starts with alphabet character. (size:= under 64). |
MyCQException | An error occurred. check error code. |
void MyCQ.QueueSchema.addLong | ( | string | columnName | ) |
Add a new LONG type column. See: ColumnType
columnName | A column name that will be created in a queue schema. A column name is a combination of alphabets and numerics which starts with alphabet character. (size:= under 64). |
MyCQException | An error occurred. check error code. |
void MyCQ.QueueSchema.addShort | ( | string | columnName | ) |
Add a new SHORT type column. See: ColumnType
columnName | A column name that will be created in a queue schema. A column name is a combination of alphabets and numerics which starts with alphabet character. (size:= under 64). |
MyCQException | An error occurred. check error code. |
void MyCQ.QueueSchema.addString | ( | string | columnName, | |
int | size | |||
) |
Add a new STRING type column. See: ColumnType
columnName | A column name that will be created in a queue schema. A column name is a combination of alphabets and numerics which starts with alphabet character. (size:= under 64). | |
size | An integer greater than zero that will be the size of STRING type column. |
MyCQException | An error occurred. check error code. |
void MyCQ.QueueSchema.addTime | ( | string | columnName | ) |
Add a new TIME type column. See: ColumnType
columnName | A column name that will be created in a queue schema. A column name is a combination of alphabets and numerics which starts with alphabet character. (size:= under 64). |
MyCQException | An error occurred. check error code. |
void MyCQ.QueueSchema.addUShort | ( | string | columnName | ) |
Add a new USHORT type column. See: ColumnType
columnName | A column name that will be created in a queue schema. A column name is a combination of alphabets and numerics which starts with alphabet character. (size:= under 64). |
MyCQException | An error occurred. check error code. |
void MyCQ.QueueSchema.addVarBinary | ( | string | columnName | ) |
Add a new VAR_BINARY type column. See: ColumnType
columnName | A column name that will be created in a queue schema. A column name is a combination of alphabets and numerics which starts with alphabet character. (size:= under 64). |
MyCQException | An error occurred. check error code. |
void MyCQ.QueueSchema.addVarString | ( | string | columnName | ) |
Add a new VAR_STRING type column. See: ColumnType
columnName | A column name that will be created in a queue schema. A column name is a combination of alphabets and numerics which starts with alphabet character. (size:= under 64). |
MyCQException | An error occurred. check error code. |
void MyCQ.QueueSchema.clear | ( | ) |
Clear all the columns in a queue schema.
List<Column> MyCQ.QueueSchema.getColumns | ( | ) |
Get the column list a queue schema.
int MyCQ.QueueSchema.getMessageSize | ( | ) |
Get the message size. It is a total size of columns of a queue schema.