Returns a string value for the named column in the given result set callable statement object.
Syntax
getString( resultset , index )
resultset.getString( index )
getString( callablestatement , index )
callablestatement.getString( index )
Parameters
resultset
|
the result set object to use.
|
callablestatement
|
the callable statement object to use.
|
index
|
the index of the column.
|
Returns
string
|
the string value at the given column index.
|
Example
s = rs.getString( 1 )
|