1.1

Table Of Contents
Note: You must specify the gateway sender name in all uppercase letters. Use
single quotes to specify the sender name when you call the procedure from an
interactive sqlf session.
Example
This command stops all primary and secondary senders with the name cluster-1-sender:
sqlf> call sys.stop_gatewaysender ('CLUSTER-1-SENDER');
This example executes the procedure from a Java client:
java.sql.Connection conn = getConnection();
CallableStatement cs = conn.prepareCall("CALL
SYS.STOP_GATEWAYSENDER(?)");
cs.setString(1, "cluster-1-sender");
cs.execute();
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
vFabric SQLFire User's Guide604
vFabric SQLFire Reference