Result
GetType
get the SQL type of a column
Calling Sequence
Parameters
Description
Examples
result:-GetType( index )
result
-
Result module
index
integer or string; the column for which the type is returned
GetType returns the SQL type of the column indicated by index.
If index is an integer, it is used to index into the current Result module's table. If index is a string, it is the name of the column.
The type returned by GetType can be used in an explicit cast to make Maple perform a particular type conversion. For more information, see conversions.
Create a Result.
driver≔DatabaseLoadDriver:
conn≔driver:-OpenConnectionurl,name,pass:res≔conn:-ExecuteQuerySELECT name FROM animals:res:-GetType1
INTEGER
res:-GetType2
VARCHAR
res:-GetType3
res:-GetType4
DOUBLE
res:-GetTypeid
res:-GetTypename
res:-GetTypenumber
res:-GetTypemass
See Also
Database
Database[Result]
Database[Result][GotoRow]
Database[Result][Last]
Database[Result][Next]
Database[Result][Previous]
Database[usage]
Download Help Document