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:-OpenConnection⁡url,name,pass:res≔conn:-ExecuteQuery⁡SELECT * FROM stream:res:-Next⁡
true
res:-GetData⁡1
the quick brown fox jumped over the lazy dog
res:-GetData⁡2
[ 1..127 1-D Array ]
[ Data Type: integer[1] ]
[ Storage: rectangular ]
[ Order: C_order ]
str≔res:-GetData⁡1,stream=true:str:-Type⁡
VARCHAR
str≔res:-GetData⁡2,stream=true:str:-Type⁡
BINARY
See Also
Database
Database[DataInterfaceStream]
Database[DataInterfaceStream][Get]
Database[usage]
Download Help Document