1.1.1

Table Of Contents
The maximum amount of time, in seconds, to wait for the queue to ush. Specify zero (0) to
block indenitely until the queue is empty.
Example
This command blocks until SQLFire ushes the queue associated with cluster-1-sender:
sqlf> call sys.wait_for_sender_queue_flush
('CLUSTER-1-SENDER', 'false', 0);
Data Types
The SQL type system determines the compile-time and runtime type of an expression. Each type has a certain
range of permissible values that can be assigned to a column or value of that type.
The special value NULL, denotes an unassigned or missing value of any of the types (columns that have been
assigned as non-nullable using NOT NULL clause or the primary key columns cannot have a NULL value). The
supported types are given below.
BIGINT
Provides 8 bytes storage for long integer values. An attempt to put a BIGINT value into another exact numeric
type with smaller size/precision (e.g. INT) fails if the value overows the maximum allowable by the smaller
type.
For behavior with other types in expressions, see Numeric type promotion in expressions, Storing values of one
numeric data type in columns of another numeric data type.
java.lang.LongEquivalent Java type
java.lang.Long.MIN_VALUE (-9223372036854775808 )Minimum value
java.lang.Long.MAX_VALUE (9223372036854775807 )Maximum value
java.sql.Types.BIGINTJDBC metadata type
ResultSet.getLong, PreparedStatement.setLongJDBC methods
System.Int64Equivalent .NET type
Vmware.Data.SQLFire.SQLFType.LongADO.NET metadata type
Int64ADO.NET mapped System.Data.Dbtype
DbDataReader.GetInt64ADO.NET getter
BLOB
A binary large object represents an array of raw bytes of varying length.
java.lang.BlobEquivalent Java type
java.lang.Integer.MAX_VALUE (2147483647 )Maximum length (also default length)
java.sql.Types.BLOBJDBC metadata type
ResultSet.getBlob, PreparedStatement.setBlobJDBC methods
no specic type mapping; use byte[] where requiredEquivalent .NET type
Vmware.Data.SQLFire.SQLFType.BlobADO.NET metadata type
vFabric SQLFire User's Guide624
vFabric SQLFire Reference