The SqlHandle class / base.SqlHandle methods |
Returns the Genero type name of a column in the result set produced by the SQL statement.
getResultType( index INTEGER ) RETURNING type STRING
Call the getResultType() method to query the type of a column in the result set, after executing the SQL statement with the open() method and fetching a row with fetch().
The method takes the position of the column as the parameter.
The type name is a string that represents a Genero type. For example, "INTEGER", "DECIMAL(10,2)", "DATE", "DATETIME YEAR TO SECOND".
FOR i=1 TO sh.getResultCount() DISPLAY sh.getResultType(i) END FOR