dblimits()

Description: returns information about the limits applied for identifiers and clauses in SQL statements.

Syntax: dblimits(f)

Parameters:

The return type is a record with the following fields: Code Example
procedure main()
 f:=dbopen("mydb","O","mytable","fbalbi","") # open mytable

 dbl:=dblimits(f) # get DBMS limits information

 every i:=(1 to *dbl) do write(dbl[i])

 close(f) # close table
end