DataInterfaceStream
Type
get the Type of a DataInterfaceStream module
Calling Sequence
Parameters
Description
Examples
stream:-Type( )
stream
-
DataInterfaceStream module
Type returns the SQL type that this DataInterfaceStream module represents.
DataInterfaceStream modules can only represent objects of type BINARY, VARBINARY, LONGVARBINARY, CHAR, VARCHAR, and LONGVARCHAR.
driver≔DatabaseLoadDriver:
conn≔driver:-OpenConnectionurl,name,pass:res≔conn:-ExecuteQuerySELECT * FROM stream:res:-Next
true
res:-GetData1
the quick brown fox jumped over the lazy dog
res:-GetData2
[ 1..127 1-D Array ]
[ Data Type: integer[1] ]
[ Storage: rectangular ]
[ Order: C_order ]
str≔res:-GetData1,stream=true:str:-Type
VARCHAR
str≔res:-GetData2,stream=true:str:-Type
BINARY
See Also
Database
Database[DataInterfaceStream]
Database[DataInterfaceStream][Get]
Database[usage]
Download Help Document