|
|
+
|
Progress.Json.ObjectModel.JsonArray GetConnectedDatabases ()
|
Returns a JSON array with the logical names of all connected databases
Notes : Uses num-dbs and ldbname()
@return JsonArray containing the connected database names
*/
|
|
|
+
|
Progress.Json.ObjectModel.JsonObject GetDatabaseTableDetails (character, character)
|
Returns details about a database table (fields and indexes)
|
|
|
+
|
Progress.Json.ObjectModel.JsonArray GetDatabaseTables (character)
|
Returns a JSON array with details about all non-hidden tables of a connected database
Notes : The result includes the frameworks view on the table when available (TableDatasetModel)
@param pcDatabaseName The logical database name
@return JsonArray containing one JsonObject per table
*/
|
|
|
+
|
Progress.Json.ObjectModel.JsonArray SearchDatabaseTables (character)
|
Searches for database tables across all connected databases
Notes : A table is included when its name or description matches the filter, or when the framework description matches
@param pcFilter Filter text used in a MATCHES pattern
@return JsonArray containing one JsonObject per matching table
*/
|