16 September 2012
Like
SQLVARIABLE
this function returns its information in the return string, but by specifying
a stem name, the results are returned
in that stem variable. The stem name must include a trailing period.
The stem name option is useful for the DATATYPES option, as
many databases have datatype names that contain spaces.
Arguments:
Say "Getting mSQL datatypes with stem..."
rc = sqlgetifno("c1","DATATYPES","dt.")
Do i = 1 To dt.0
Say i '-' dt.i
End
Say "Getting mSQL datatypes without stem..."
Say sqlgetifno(c1,"DATATYPES")
|