PdcDatabase.GetFieldLength: Difference between revisions
Jump to navigation
Jump to search
Created page with "== Declaration == GetFieldLength(strTableName as String,strFieldName as String) as integer == Description == Return the field length of the gieven field in the given table. ..." |
No edit summary |
||
Line 16: | Line 16: | ||
size = pdc.DataBase.GetFieldLength("TLE_TILE", "TLE_NAME") | size = pdc.DataBase.GetFieldLength("TLE_TILE", "TLE_NAME") | ||
</source> | </source> | ||
== Availability == | == Availability == | ||
Available since September 2018 (from version 5.5) | Available since September 2018 (from version 5.5) |
Revision as of 10:40, 12 September 2018
Declaration
GetFieldLength(strTableName as String,strFieldName as String) as integer
Description
Return the field length of the gieven field in the given table.
Notes
The input parameters are:
- strTableName as string, the table name
- strFieldName as string, the field name
Code example
Dim size
size = pdc.DataBase.GetFieldLength("TLE_TILE", "TLE_NAME")
Availability
Available since September 2018 (from version 5.5)