Returns the maximum number of characters which the database allows for the SQL statements.
1 connection.metadata.getMaxStatementLength
<connection.metadata.getMaxStatementLength />
Returns | |
---|---|
Type | Description |
Integer | Returns the maximum number of characters which this database allows for a SQL statement. |
Example
Maximum length of a SQL statement.
Copy
<xsql-script name='connection_getMaxStatementLength_test1'> <body> <println> <connection.metadata.getMaxStatementLength /> </println> </body> </xsql-script>