Database Manager
Last updated
Was this helpful?
Last updated
Was this helpful?
(databaseManager)
The Database Manager
offers extensive tools for managing datasources, queries, records, and transactions, enabling the creation of efficient and scalable data-driven applications. It supports interaction with both in-memory and database-bound datasources, advanced query construction, and record management.
The system allows dynamic creation of datasources using createDataSourceByQuery
, which populates datasources with query results while enabling reuse if the data structure remains consistent. Developers can specify or infer column types and remove unused datasources using removeDataSource
to optimize resource usage. Query handling is further enhanced with the QBSelect
object, enabling the programmatic construction of complex queries. The manager also supports ViewFoundSets
, which create filtered, read-only views of database tables suitable for custom data presentation and aggregation.
Record management is facilitated by functions like saveData
for committing changes, validate
for enforcing data constraints, and mergeRecords
for resolving duplicate records by merging their associated data. Unsaved changes can be reverted with revertEditedRecords
, and the system tracks edited, new, or unsaved records using functions like getEditedRecords
. Developers can ensure data integrity by starting transactions with startTransaction
and rolling back changes using rollbackTransaction
if necessary.
Table filters enable the restriction of data access through both column-based and query-based conditions. Filters can be dynamically applied, updated, or removed using setTableFilters
and removeTableFilterParam
. The manager provides utilities like getTable
to retrieve schema details, getTableCount
to determine record counts, and getTableFilterParams
to inspect active filters.
Lock management is supported through hasLocks
to check acquired locks and releaseAllLocks
to release them, ensuring safe multi-user interactions. To reflect external data changes, cached records can be refreshed using refreshRecordFromDatabase
.
Validation tools ensure that records conform to constraints such as column lengths and non-null requirements through the validate
function. Performance optimization is achieved with recalculate
to refresh derived values and flushCalculations
to clear unnecessary data in memory, reducing resource overhead.
These capabilities provide developers with a comprehensive framework for building robust and customizable database-driven solutions.
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Enable/disable the foundset behaviour to keep selection to the first row always, even if updates from other clients are received that add new records before the current first record.
Enable/disable the automatic prefetching of related foundsets for sibling records.
Enable/disable the default null validator for non null columns, makes it possible to do the checks later on when saving, when for example autosave is disabled.
Request lock(s) for a foundset, can be a normal or related foundset.
Request lock(s) for a foundset, can be a normal or related foundset.
Adds a filter based on a query to all the foundsets based on a table.
Adds a filter based on a query to all the foundsets based on a table.
Adds a filter to all the foundsets based on a table.
Adds a filter to all the foundsets based on a table.
Adds a filter to all the foundsets based on a table.
Adds a filter to all the foundsets based on a table.
void
Add tracking info used in the log table.
Returns true if a transaction is committed; rollback if commit fails.
Returns true if a transaction is committed; rollback if commit fails.
Returns true if a transaction is committed; rollback if commit fails.
Creates a foundset that combines all the records of the specified one-to-many relation seen from the given parent/primary foundset.
Creates a foundset that combines all the records of the specified one-to-many relation seen from the given parent/primary foundset.
Converts the argument to a JSDataSet, possible use in controller.
Converts the argument to a JSDataSet, possible use in controller.
Converts the argument to a JSDataSet, possible use in controller.
Converts the argument to a JSDataSet, possible use in controller.
Converts the argument to a JSDataSet, possible use in controller.
Copies all matching non empty columns (if overwrite boolean is given all columns except pk/ident, if array then all columns except pk and array names).
Copies all matching non empty columns (if overwrite boolean is given all columns except pk/ident, if array then all columns except pk and array names).
Copies all matching non empty columns (if overwrite boolean is given all columns except pk/ident, if array then all columns except pk and array names).
Performs a query and saves the result in a datasource.
Performs a query and saves the result in a datasource.
Performs a query and saves the result in a datasource.
Performs a query and saves the result in a datasource.
Performs a sql query on the specified server, saves the the result in a datasource.
Performs a sql query on the specified server, saves the the result in a datasource.
Performs a sql query on the specified server, saves the the result in a datasource.
Returns an empty dataset object.
Returns an empty dataset object.
Returns an empty dataset object.
Create a QueryBuilder object for a datasource.
Create a QueryBuilder object for a datasource with given table alias.
Create a table filter that can be applied to all the foundsets based on a table.
Create a table filter that can be applied to all the foundsets based on a table.
Create a table filter that can be applied to all the foundsets based on a table.
Check wether a data source exists.
void
This method differences for recalculate() that it only works on a datasource rows/records that are loaded in memory.
void
This method differences for recalculate() that it only works on a datasource rows/records that are loaded in memory.
Returns true or false if autosave is enabled or disabled.
Retrieves a list with names of all database servers that have property DataModelCloneFrom equal to the server name parameter.
Performs a sql query with a query builder object.
Performs a sql query with a query builder object.
Performs a sql query on the specified server, returns the result in a dataset.
Returns the datasource corresponding to the given server/table.
Returns the server name from the datasource, or null if not a database datasource.
Returns the table name from the datasource, or null if not a database datasource.
Returns the database product name as supplied by the driver for a server.
Returns an array of edited or deleted records with outstanding (unsaved) data.
Returns an array of edited or deleted records with outstanding (unsaved) data.
Returns an array of edited or deleted records with outstanding (unsaved) data.
Returns an array of edited or deleted records with outstanding (unsaved) data for a datasource with a filter.
Returns an array of records that fail after a save.
Returns an array of records that fail after a save.
Returns a foundset object for a specified pk base query.
Returns a foundset object for a specified datasource or server and tablename.
Returns a foundset object for a specified datasource or server and tablename.
Returns the total number of records in a foundset.
Returns a JSFoundsetUpdater object that can be used to update all or a specific number of rows in the specified foundset.
Gets the next sequence for a column which has a sequence defined in its column dataprovider properties.
Returns an array with all the server names used in the solution.
Returns the JSTable object from which more info can be obtained (like columns).
Returns the JSTable object from which more info can be obtained (like columns).
Returns the JSTable object from which more info can be obtained (like columns).
Returns the JSTable object from which more info can be obtained (like columns).
Returns the total number of records(rows) in a table.
Returns a two dimensional array object containing the table filter information currently applied to the servers tables.
Returns a two dimensional array object containing the table filter information currently applied to the servers tables.
Returns an array of all table names for a specified server.
Returns a ViewFoundSet that was created by getViewFoundSet(name,query,register) with the registerd boolean "true".
Returns a foundset object for a specified query.
Returns a foundset object for a specified query.
Returns an array of all view names for a specified server.
Returns true if the current client has any or the specified lock(s) acquired.
Returns true if the current client has any or the specified lock(s) acquired.
Returns true if the argument (foundSet / record) has at least one row that was not yet saved in the database.
Returns true if the argument (foundSet / record) has at least one row that was not yet saved in the database.
Returns true if the specified foundset, on a specific index or in any of its records, or the specified record has changes or is new unsaved record.
Returns true if the specified foundset, on a specific index or in any of its records, or the specified record has changes or is new unsaved record.
Returns true if the (related)foundset exists and has records.
Returns true if the (related)foundset exists and has records.
Returns true if there is an transaction active for this client.
Merge records from the same foundset, updates entire datamodel (via foreign type on columns) with destination record pk, deletes source record.
Merge records from the same foundset, updates entire datamodel (via foreign type on columns) with destination record pk, deletes source record.
void
Can be used to recalculate a specified record or all rows in the specified foundset.
Flushes the client data cache and requeries the data for a record (based on the record index) in a foundset or all records in the foundset.
Release all current locks the client has (optionally limited to named locks).
Release all current locks the client has (optionally limited to named locks).
Free resources allocated for a previously created data source.
Removes a previously defined table filter.
void
Reverts outstanding (not saved) in memory changes from edited records.
void
Reverts outstanding (not saved) in memory changes from edited records.
void
Rollback a transaction started by databaseManager.
void
Rollback a transaction started by databaseManager.
void
Rollback a transaction started by databaseManager.
Saves all outstanding (unsaved) data and exits the current record.
Saves all outstanding (unsaved) data and exits the current record.
Saves all outstanding (unsaved) data and exits the current record.
Saves all outstanding (unsaved) data and exits the current record.
Set autosave, if false then no saves or deletes will happen by the ui.
void
Turnoff the initial form foundset record loading, set this in the solution open method.
Apply multiple table filters to all the foundsets that are affected by the filters.
void
Start a database transaction.
Switches a named server to another named server with the same datamodel (recommended to be used in an onOpen method for a solution).
Validates the given record, it runs first the method that is attached to the entity event "onValidate".
Validates the given record, it runs first the method that is attached to the entity event "onValidate".
Enable/disable the foundset behaviour to keep selection to the first row always, even if updates from other clients are received that add new records before the current first record.
If set to false [default], a foundset with selection on first record will keep the selected index to 1, but may change the selected record when a new record is received from another client. If set to true, the selected index may change but the selected record will be kept if possible.
Sample
Enable/disable the automatic prefetching of related foundsets for sibling records.
For example, when orders from a record in a customer foundset are retrieved, already the orders of a few sibling records are also prefetched. By default this prefetch is enabled for SmartClient but is disabled for all serverbased clients like NGClient and HeadlessClient. Because server based client are close enough to the database that they can fetch the siblings themselfs
Sample
Enable/disable the default null validator for non null columns, makes it possible to do the checks later on when saving, when for example autosave is disabled.
Sample
Parameters
Sample
Parameters
Sample
Adds a filter based on a query to all the foundsets based on a table.
Filters on tables touched in the query will not be applied to the query filter. For example, when a table filter exists on the order_details table, a query filter with a join from orders to order_details will be applied to queries on the orders table, but the filter condition on the orders_details table will not be included.
returns true if the table filter could be applied.
Parameters
Sample
Adds a filter based on a query to all the foundsets based on a table.
Filters on tables touched in the query will not be applied to the query filter. For example, when a table filter exists on the order_details table, a query filter with a join from orders to order_details will be applied to queries on the orders table, but the filter condition on the orders_details table will not be included.
returns true if the table filter could be applied.
Parameters
Sample
Adds a filter to all the foundsets based on a table. Note: if null is provided as the tablename the filter will be applied on all tables with the dataprovider name. A dataprovider can have multiple filters defined, they will all be applied. returns true if the table filter could be applied.
Parameters
Sample
Adds a filter to all the foundsets based on a table. Note: if null is provided as the tablename the filter will be applied on all tables with the dataprovider name. A dataprovider can have multiple filters defined, they will all be applied. returns true if the table filter could be applied.
Parameters
Sample
Adds a filter to all the foundsets based on a table. Note: if null is provided as the tablename the filter will be applied on all tables with the dataprovider name. A dataprovider can have multiple filters defined, they will all be applied. returns true if the table filter could be applied.
Parameters
Sample
Adds a filter to all the foundsets based on a table. Note: if null is provided as the tablename the filter will be applied on all tables with the dataprovider name. A dataprovider can have multiple filters defined, they will all be applied. returns true if the table filter could be applied.
Parameters
Sample
Add tracking info used in the log table. When tracking is enabled and a new row is inserted in the log table, if it has a column named 'columnName', its value will be set with 'value'
Parameters
Returns: void
Sample
Returns true if a transaction is committed; rollback if commit fails. Saves all edited records and commits the data.
Sample
Returns true if a transaction is committed; rollback if commit fails.
Parameters
Sample
Returns true if a transaction is committed; rollback if commit fails.
Parameters
Sample
Creates a foundset that combines all the records of the specified one-to-many relation seen from the given parent/primary foundset. The created foundset will not contain records that have not been saved in the database, because the records in the foundset will be the result of a select query to the database.
Parameters
Sample
Creates a foundset that combines all the records of the specified one-to-many relation seen from the given parent/primary foundset. The created foundset will not contain records that have not been saved in the database, because the records in the foundset will be the result of a select query to the database.
Parameters
Sample
Converts the argument to a JSDataSet, possible use in controller.loadRecords(dataset). The optional array of dataprovider names is used (only) to add the specified dataprovider names as columns to the dataset.
Parameters
Sample
Converts the argument to a JSDataSet, possible use in controller.loadRecords(dataset). The optional array of dataprovider names is used (only) to add the specified dataprovider names as columns to the dataset.
Parameters
Sample
Converts the argument to a JSDataSet, possible use in controller.loadRecords(dataset). The optional array of dataprovider names is used (only) to add the specified dataprovider names as columns to the dataset.
Parameters
Sample
Converts the argument to a JSDataSet, possible use in controller.loadRecords(dataset). The optional array of dataprovider names is used (only) to add the specified dataprovider names as columns to the dataset.
Parameters
Sample
Converts the argument to a JSDataSet, possible use in controller.loadRecords(dataset). The optional array of dataprovider names is used (only) to add the specified dataprovider names as columns to the dataset.
Parameters
Sample
Copies all matching non empty columns (if overwrite boolean is given all columns except pk/ident, if array then all columns except pk and array names). The matching requires the properties and getter functions of the source to match those of the destination; for the getter functions, the 'get' will be removed and the remaining name will be converted to lowercase before attempting to match. Returns true if no error occurred.
NOTE: This function could be used to store a copy of records in an archive table. Use the getRecord() function to get the record as an object. Before trying this example, please make sure that the foundsets have some records loaded:
Parameters
Sample
Copies all matching non empty columns (if overwrite boolean is given all columns except pk/ident, if array then all columns except pk and array names). The matching requires the properties and getter functions of the source to match those of the destination; for the getter functions, the 'get' will be removed and the remaining name will be converted to lowercase before attempting to match. Returns true if no error occurred.
NOTE: This function could be used to store a copy of records in an archive table. Use the getRecord() function to get the record as an object. Before trying this example, please make sure that the foundsets have some records loaded:
Parameters
Sample
Copies all matching non empty columns (if overwrite boolean is given all columns except pk/ident, if array then all columns except pk and array names). The matching requires the properties and getter functions of the source to match those of the destination; for the getter functions, the 'get' will be removed and the remaining name will be converted to lowercase before attempting to match. Returns true if no error occurred.
NOTE: This function could be used to store a copy of records in an archive table. Use the getRecord() function to get the record as an object. Before trying this example, please make sure that the foundsets have some records loaded:
Parameters
Sample
Performs a query and saves the result in a datasource. Will throw an exception if anything went wrong when executing the query. Column types in the datasource are inferred from the query result or can be explicitly specified.
A datasource can be reused if the data has the same signature (column names and types). A new createDataSourceByQuery() call will clear the datasource contents from a previous call and insert the current data.
Parameters
Sample
Performs a query and saves the result in a datasource. Will throw an exception if anything went wrong when executing the query. Column types in the datasource are inferred from the query result or can be explicitly specified.
A datasource can be reused if the data has the same signature (column names and types). A new createDataSourceByQuery() call will clear the datasource contents from a previous call and insert the current data.
Parameters
Sample
Performs a query and saves the result in a datasource. Will throw an exception if anything went wrong when executing the query. Column types in the datasource are inferred from the query result or can be explicitly specified.
Using this variation of createDataSourceByQuery any Tablefilter on the involved tables will be taken into account.
A datasource can be reused if the data has the same signature (column names and types). A new createDataSourceByQuery() call will clear the datasource contents from a previous call and insert the current data.
Parameters
Sample
Performs a query and saves the result in a datasource. Will throw an exception if anything went wrong when executing the query. Column types in the datasource are inferred from the query result or can be explicitly specified.
Using this variation of createDataSourceByQuery any Tablefilter on the involved tables will be taken into account.
A datasource can be reused if the data has the same signature (column names and types). A new createDataSourceByQuery() call will clear the datasource contents from a previous call and insert the current data.
Parameters
Sample
Performs a sql query on the specified server, saves the the result in a datasource. Will throw an exception if anything went wrong when executing the query. Column types in the datasource are inferred from the query result or can be explicitly specified.
Using this variation of createDataSourceByQuery any Tablefilter on the involved tables will be disregarded.
A datasource can be reused if the data has the same signature (column names and types). A new createDataSourceByQuery() call will clear the datasource contents from a previous call and insert the current data.
Parameters
Sample
Performs a sql query on the specified server, saves the the result in a datasource. Will throw an exception if anything went wrong when executing the query. Column types in the datasource are inferred from the query result or can be explicitly specified.
Using this variation of createDataSourceByQuery any Tablefilter on the involved tables will be disregarded.
A datasource can be reused if the data has the same signature (column names and types). A new createDataSourceByQuery() call will clear the datasource contents from a previous call and insert the current data.
Parameters
Sample
Performs a sql query on the specified server, saves the the result in a datasource. Will throw an exception if anything went wrong when executing the query. Column types in the datasource are inferred from the query result or can be explicitly specified.
Using this variation of createDataSourceByQuery any Tablefilter on the involved tables will be disregarded.
A datasource can be reused if the data has the same signature (column names and types). A new createDataSourceByQuery() call will clear the datasource contents from a previous call and insert the current data.
Parameters
Sample
Returns an empty dataset object.
Sample
Returns an empty dataset object.
Parameters
Sample
Returns an empty dataset object.
Parameters
Sample
Create a QueryBuilder object for a datasource.
Parameters
Sample
Create a QueryBuilder object for a datasource with given table alias. The alias can be used inside custom queries to bind to the outer table.
Parameters
Sample
Create a table filter that can be applied to all the foundsets based on a table. Multiple filters can be applied at the same time using databaseManager.setTableFilters().
Filters on tables touched in the query will not be applied to the query filter. For example, when a table filter exists on the order_details table, a query filter with a join from orders to order_details will be applied to queries on the orders table, but the filter condition on the orders_details table will not be included.
Parameters
Sample
Create a table filter that can be applied to all the foundsets based on a table. Multiple filters can be applied at the same time using databaseManager.setTableFilters().
Note: if null is provided as the tablename the filter will be applied on all tables with the dataprovider name. A dataprovider can have multiple filters defined, they will all be applied.
Parameters
Sample
Create a table filter that can be applied to all the foundsets based on a table. Multiple filters can be applied at the same time using databaseManager.setTableFilters().
Note: if null is provided as the tablename the filter will be applied on all tables with the dataprovider name. A dataprovider can have multiple filters defined, they will all be applied.
Parameters
Sample
Check wether a data source exists. This function can be used for any type of data source (db-based, in-memory).
Parameters
Sample
This method differences for recalculate() that it only works on a datasource rows/records that are loaded in memory. It will not cause extra rows of that datasource to be loaded in memory (except if a calc itself would do that)
if onlyUnstored is true, then only unstored calculations will be flushed. (so also not causing any saves to the database)
Parameters
Returns: void
Sample
This method differences for recalculate() that it only works on a datasource rows/records that are loaded in memory. It will not cause extra rows of that datasource to be loaded in memory (except if a calc itself would do that)
if onlyUnstored is true, then only unstored calculations will be flushed. (so also not causing any saves to the database)
Parameters
Returns: void
Sample
Returns true or false if autosave is enabled or disabled.
Sample
Retrieves a list with names of all database servers that have property DataModelCloneFrom equal to the server name parameter.
Parameters
Sample
Performs a sql query with a query builder object. Will throw an exception if anything did go wrong when executing the query.
Parameters
Sample
Performs a sql query with a query builder object. Will throw an exception if anything did go wrong when executing the query.
Using this variation of getDataSetByQuery any Tablefilter on the involved tables will be taken into account.
Parameters
Sample
Performs a sql query on the specified server, returns the result in a dataset. Will throw an exception if query is not a select statement or anything did go wrong when executing the query.
Using this variation of getDataSetByQuery any Tablefilter on the involved tables will be disregarded.
Parameters
Sample
Returns the datasource corresponding to the given server/table.
Parameters
Sample
Returns the server name from the datasource, or null if not a database datasource.
Parameters
Sample
Returns the table name from the datasource, or null if not a database datasource.
Parameters
Sample
Returns the database product name as supplied by the driver for a server.
NOTE: For more detail on named server connections, see the chapter on Database Connections, beginning with the Introduction to database connections in the Servoy Developer User's Guide.
Parameters
Sample
Returns an array of edited or deleted records with outstanding (unsaved) data.
This is different form JSRecord.isEditing() because this call actually checks if there are changes between the current record data and the stored data in the database. If there are no changes then the record is removed from the edited records list (so after this call JSRecord.isEditing() can return false when it returned true just before this call)
NOTE: To return a dataset of outstanding (unsaved) edited data for each record, see JSRecord.getChangedData(); NOTE2: The fields focus may be lost in user interface in order to determine the edits.
Sample
Returns an array of edited or deleted records with outstanding (unsaved) data.
NOTE: To return a dataset of outstanding (unsaved) edited data for each record, see JSRecord.getChangedData(); NOTE2: The fields focus may be lost in user interface in order to determine the edits.
Parameters
Sample
Returns an array of edited or deleted records with outstanding (unsaved) data.
Parameters
Sample
Returns an array of edited or deleted records with outstanding (unsaved) data for a datasource with a filter.
Parameters
Sample
Returns an array of records that fail after a save.
Sample
Returns an array of records that fail after a save.
Parameters
Sample
Parameters
Sample
Returns a foundset object for a specified datasource or server and tablename. Alternative method: datasources.db.server_name.table_name.getFoundSet() or datasources.mem['ds'].getFoundSet()
Parameters
Sample
Returns a foundset object for a specified datasource or server and tablename.
Parameters
Sample
Returns the total number of records in a foundset.
NOTE: This can be an expensive operation (time-wise) if your resultset is large.
Parameters
Sample
Returns a JSFoundsetUpdater object that can be used to update all or a specific number of rows in the specified foundset.
Parameters
Sample
Gets the next sequence for a column which has a sequence defined in its column dataprovider properties.
NOTE: For more infomation on configuring the sequence for a column, see the section Auto enter options for a column from the Dataproviders chapter in the Servoy Developer User's Guide.
Parameters
Sample
Returns an array with all the server names used in the solution.
NOTE: For more detail on named server connections, see the chapter on Database Connections, beginning with the Introduction to database connections in the Servoy Developer User's Guide.
Sample
Returns the JSTable object from which more info can be obtained (like columns). The parameter can be a JSFoundset,JSRecord,datasource string or server/tablename combination.
Parameters
Sample
Returns the JSTable object from which more info can be obtained (like columns). The parameter can be a JSFoundset,JSRecord,datasource string or server/tablename combination.
Parameters
Sample
Returns the JSTable object from which more info can be obtained (like columns). The parameter can be a JSFoundset,JSRecord,datasource string or server/tablename combination.
Parameters
Sample
Returns the JSTable object from which more info can be obtained (like columns). The parameter can be a JSFoundset,JSRecord,datasource string or server/tablename combination.
Parameters
Sample
Returns the total number of records(rows) in a table.
NOTE: This can be an expensive operation (time-wise) if your resultset is large
Parameters
Sample
Returns a two dimensional array object containing the table filter information currently applied to the servers tables. For column-based table filters, a row of 5 fields per filter are returned. The "columns" of a row from this array are: tablename, dataprovider, operator, value, filtername
For query-based filters, a row of 2 fields per filter are returned. The "columns" of a row from this array are: query, filtername
Parameters
Sample
Returns a two dimensional array object containing the table filter information currently applied to the servers tables. For column-based table filters, a row of 5 fields per filter are returned. The "columns" of a row from this array are: tablename, dataprovider, operator, value, filtername
For query-based filters, a row of 2 fields per filter are returned. The "columns" of a row from this array are: query, filtername
Parameters
Sample
Returns an array of all table names for a specified server.
Parameters
Sample
Returns a ViewFoundSet that was created by getViewFoundSet(name,query,register) with the registerd boolean "true". So it is registered and remembered by the system to use in Forms. You can't get ViewFoundSet back that are not registered to the system, those are not remembered.
Parameters
Returns a foundset object for a specified query. This just creates one without keeping any reference to it, you have to use the getViewFoundSet(name,query,true) for registering it to the system. ViewFoundSets are different then normal foundsets because they have a lot less methods, stuff like newRecord/deleteRecord don't work.
If you query the pk with the columns that you display for the main or join tables then those columns can be updated and through ViewFoundSet#save(ViewRecord) they can be saved. If there are changes in ViewRecords of this ViewFoundSet then databroadcast configurations that need to load new data won't do the query right away (only after the save) Also loading more (the next chunksize) will not be done. This is because the ViewRecord on an index can be completely changed. We can't track those.
Also databroadcast can be enabled by calling one of the ViewFoundSet#enableDatabroadcastFor(QBTableClause) to listen for that specific table (main or joins). Flags can be used to control what exactly should be monitored, some don't cost a lot of overhead others have to do a full re-query to see the changes.
Parameters
Sample
Returns a foundset object for a specified query. If the boolean register is true then the system will register it to the system so it can be used in Forms. Also getViewFoundSet(name) will then return that instance. ViewFoundSets are different then normal foundsets because they have a lot less methods, stuff like newRecord/deleteRecord don't work.
If you query the pk with the columns that you display for the main or join tables then those columns can be updated and through ViewFoundSet#save(ViewRecord) they can be saved. If there are changes in ViewRecords of this ViewFoundSet then databroadcast configurations that need to load new data won't do the query right away (only after the save) Also loading more (the next chunksize) will not be done. This is because the ViewRecord on an index can be completely changed. We can't track those.
Also databroadcast can be enabled by calling one of the ViewFoundSet#enableDatabroadcastFor(QBTableClause) to listen for that specific table (main or joins). Flags can be used to control what exactly should be monitored, some don't cost a lot of overhead others have to do a full re-query to see the changes.
if the register boolean is true, then the given ViewFoundSet is registered to the system so it is picked up by forms that have this datasource (see viewFoundset.getDatasource() for the actual datasource string) assigned. The form's foundset will then have a much more limited API, so a lot of things can't be done with it - e.g. newRecord() or deleteRecords(). Also records can be updated in memory, so they are not fully read-only, but the developer is responsible for saving these changes to a persisted store. See also viewFoundset.save(...).
If the solution doesn't need this ViewFoundSet anymore and you did use register is true, please use ViewFoundSet.dispose() to clear and remove it from the system, because otherwise this register call will keep/hold this foundset in memory (for that datasource string to work) forever.
Parameters
Sample
Returns an array of all view names for a specified server.
Parameters
Sample
Returns true if the current client has any or the specified lock(s) acquired.
Sample
Returns true if the current client has any or the specified lock(s) acquired.
Parameters
Sample
Returns true if the argument (foundSet / record) has at least one row that was not yet saved in the database.
Parameters
Sample
Returns true if the argument (foundSet / record) has at least one row that was not yet saved in the database.
Parameters
Sample
Returns true if the specified foundset, on a specific index or in any of its records, or the specified record has changes or is new unsaved record.
NOTE: The fields focus may be lost in user interface in order to determine the edits.
Parameters
Sample
Returns true if the specified foundset, on a specific index or in any of its records, or the specified record has changes or is new unsaved record.
NOTE: The fields focus may be lost in user interface in order to determine the edits.
Parameters
Sample
Returns true if the (related)foundset exists and has records.
Parameters
Sample
Returns true if the (related)foundset exists and has records.
Parameters
Sample
Returns true if there is an transaction active for this client.
Sample
Merge records from the same foundset, updates entire datamodel (via foreign type on columns) with destination record pk, deletes source record. Do use a transaction!
This function is very handy in situations where duplicate data exists. It allows you to merge the two records and move all related records in one go. Say the source_record is "Ikea" and the combined_destination_record is "IKEA", the "Ikea" record is deleted and all records related to it (think of contacts and orders, for instance) will be related to the "IKEA" record.
The function takes an optional array of column names. If provided, the data in the named columns will be copied from source_record to combined_destination_record.
Note that it is essential for both records to originate from the same foundset, as shown in the sample code.
Parameters
Sample
Merge records from the same foundset, updates entire datamodel (via foreign type on columns) with destination record pk, deletes source record. Do use a transaction!
This function is very handy in situations where duplicate data exists. It allows you to merge the two records and move all related records in one go. Say the source_record is "Ikea" and the combined_destination_record is "IKEA", the "Ikea" record is deleted and all records related to it (think of contacts and orders, for instance) will be related to the "IKEA" record.
The function takes an optional array of column names. If provided, the data in the named columns will be copied from source_record to combined_destination_record.
Note that it is essential for both records to originate from the same foundset, as shown in the sample code.
Parameters
Sample
Can be used to recalculate a specified record or all rows in the specified foundset. May be necessary when data is changed from outside of servoy, or when there is data changed inside servoy but records with calculations depending on that data where not loaded so not updated and you need to update the stored calculation values because you are depending on that with queries or aggregates.
Parameters
Returns: void
Sample
Flushes the client data cache and requeries the data for a record (based on the record index) in a foundset or all records in the foundset. Used where a program external to Servoy has modified the database record. Giving 0 as the index will just refresh he selected record.
If the index is -1 then this method will refresh all the records of the datasource of the foundset, it does this by flusing all the records and the row data of the full datasource So everything is reloaded fully fresh when the foundsets will requery for there data. WARNING: Don't hold any references to JSRecord objects from before this call with -1 index. Those records objects are all in an invalid state because of the underlying data flush.
Parameters
Sample
Release all current locks the client has (optionally limited to named locks). return true if the locks are released.
Sample
Release all current locks the client has (optionally limited to named locks). return true if the locks are released.
Parameters
Sample
Free resources allocated for a previously created data source. NOTE: make sure this datasource is not using anymore in forms or components! because the inmemory table and the foundset build on that table are all just removed.
Normally this will be automatically done if a client is removed/shutdown, but if constantly new stuff is created or you don't need it anymore from what the client currently is using or seeing, then removing this will clean up memory.
Parameters
Sample
Removes a previously defined table filter.
Parameters
Sample
Reverts outstanding (not saved) in memory changes from edited records. Can specify a record or foundset as parameter to rollback. Best used in combination with the function databaseManager.setAutoSave()
Returns: void
Sample
Reverts outstanding (not saved) in memory changes from edited records. Can specify a record or foundset as parameter to rollback. Best used in combination with the function databaseManager.setAutoSave()
Parameters
Returns: void
Sample
Rollback a transaction started by databaseManager.startTransaction(). Note that when autosave is false, revertEditedRecords() will not handle deleted records, while rollbackTransaction() does. Also, rollbackEditedRecords() is called before rolling back the transaction see rollbackTransaction(boolean) to control that behavior and saved records within the transactions are restored to the database values, so user input is lost, to control this see rollbackTransaction(boolean,boolean)
Returns: void
Sample
Rollback a transaction started by databaseManager.startTransaction(). Note that when autosave is false, revertEditedRecords() will not handle deleted records, while rollbackTransaction() does. Also, saved records within the transactions are restored to the database values, so user input is lost, to controll this see rollbackTransaction(boolean,boolean)
Parameters
Returns: void
Sample
Rollback a transaction started by databaseManager.startTransaction(). Note that when autosave is false, revertEditedRecords() will not handle deleted records, while rollbackTransaction() does.
Parameters
Returns: void
Sample
Saves all outstanding (unsaved) data and exits the current record. Optionally, by specifying a record or foundset, can save a single record or all records from foundset instead of all the data. You can call saveData for a record or foundset inside a Table Event (save all will not work), and that will only save the records that are currently not being saved (to avoid infinite cycles). Since Servoy 8.3 saveData with null parameter does not call saveData() as fallback, it just returns false.
NOTE: The fields focus may be lost in user interface in order to determine the edits. saveData() called from table events (like afterRecordInsert) is only partially supported depending on how first saveData() (that triggers the event) is called. If first saveData() is called with no arguments, all saveData() from table events are returning immediately with true value and records will be saved as part of first save. If first saveData() is called with record(s) as arguments, saveData() from table event will try to save record(s) from arguments that are different than those in first call. saveData() with no arguments inside table events will always return true without saving anything.
NOTE: When saveData() is called within a transaction, records after a record that fails with some sql-exception will not be saved, but moved to the failed records. record.exception.getErrorCode() will return ServoyException.MUST_ROLLBACK for these records.
Sample
Saves all outstanding (unsaved) data and exits the current record. Optionally, by specifying a record or foundset, can save a single record or all records from foundset instead of all the data. You can call saveData for a record or foundset inside a Table Event (save all will not work), and that will only save the records that are currently not being saved (to avoid infinite cycles). Since Servoy 8.3 saveData with null parameter does not call saveData() as fallback, it just returns false.
NOTE: The fields focus may be lost in user interface in order to determine the edits. saveData() called from table events (like afterRecordInsert) is only partially supported depending on how first saveData() (that triggers the event) is called. If first saveData() is called with no arguments, all saveData() from table events are returning immediately with true value and records will be saved as part of first save. If first saveData() is called with record(s) as arguments, saveData() from table event will try to save record(s) from arguments that are different than those in first call. saveData() with no arguments inside table events will always return true without saving anything.
NOTE: When saveData() is called within a transaction, records after a record that fails with some sql-exception will not be saved, but moved to the failed records. record.exception.getErrorCode() will return ServoyException.MUST_ROLLBACK for these records.
Parameters
Sample
Saves all outstanding (unsaved) data and exits the current record. Optionally, by specifying a record or foundset, can save a single record or all records from foundset instead of all the data. You can call saveData for a record or foundset inside a Table Event (save all will not work), and that will only save the records that are currently not being saved (to avoid infinite cycles). Since Servoy 8.3 saveData with null parameter does not call saveData() as fallback, it just returns false.
NOTE: The fields focus may be lost in user interface in order to determine the edits. saveData() called from table events (like afterRecordInsert) is only partially supported depending on how first saveData() (that triggers the event) is called. If first saveData() is called with no arguments, all saveData() from table events are returning immediately with true value and records will be saved as part of first save. If first saveData() is called with record(s) as arguments, saveData() from table event will try to save record(s) from arguments that are different than those in first call. saveData() with no arguments inside table events will always return true without saving anything.
NOTE: When saveData() is called within a transaction, records after a record that fails with some sql-exception will not be saved, but moved to the failed records. record.exception.getErrorCode() will return ServoyException.MUST_ROLLBACK for these records.
Parameters
Sample
Saves all outstanding (unsaved) data and exits the current record. Optionally, by specifying a record or foundset, can save a single record or all records from foundset instead of all the data. You can call saveData for a record or foundset inside a Table Event (save all will not work), and that will only save the records that are currently not being saved (to avoid infinite cycles). Since Servoy 8.3 saveData with null parameter does not call saveData() as fallback, it just returns false.
NOTE: The fields focus may be lost in user interface in order to determine the edits. saveData() called from table events (like afterRecordInsert) is only partially supported depending on how first saveData() (that triggers the event) is called. If first saveData() is called with no arguments, all saveData() from table events are returning immediately with true value and records will be saved as part of first save. If first saveData() is called with record(s) as arguments, saveData() from table event will try to save record(s) from arguments that are different than those in first call. saveData() with no arguments inside table events will always return true without saving anything.
NOTE: When saveData() is called within a transaction, records after a record that fails with some sql-exception will not be saved, but moved to the failed records. record.exception.getErrorCode() will return ServoyException.MUST_ROLLBACK for these records.
Parameters
Sample
Set autosave, if false then no saves or deletes will happen by the ui. Until you call databaseManager.saveData() or setAutoSave(true) *
Parameters
Sample
Turnoff the initial form foundset record loading, set this in the solution open method. Simular to calling foundset.clear() in the form's onload event.
NOTE: When the foundset record loading is turned off, controller.find or controller.loadAllRecords must be called to display the records
Returns: void
Sample
Apply multiple table filters to all the foundsets that are affected by the filters. After all filters have been applied / updated, foundset changes will be applied in the client.
The filters that have been applied with the same filter name will be removed and replaced with the new set of filters (which may be empty).
Parameters
Sample
Start a database transaction. If you want to avoid round trips to the server or avoid the possibility of blocking other clients because of your pending changes, you can use databaseManager.setAutoSave(false/true) and databaseManager.rollbackEditedRecords().
Returns: void
Sample
Switches a named server to another named server with the same datamodel (recommended to be used in an onOpen method for a solution). return true if successful. Note that this only works if source and destination server are of the same database type.
Parameters
Sample
Validates the given record, it runs first the method that is attached to the entity event "onValidate". Then it will call also the entity events "onInsert" or "onUpdate" depending if the record is new or an update. All those methods do get a parameter JSRecordMarkers where the problems can be reported against.
All columns are then also null/empty checked and if they are and the Column is marked as "not null" an error will be added with the message key "servoy.record.error.null.not.allowed" for that column.
All changed columns are length checked and if the record values is bigger then what the database column can handle and error will be added with the message key "servoy.record.error.columnSizeTooSmall" for that column. Then all the column validators will be run over all the changed columns, The validators will also get the same JSRecordMarkers to report problems to. So the global method validator now also has more parameters then just the value.
These 3 validations (null, length and column validators) are not by default done any more on change of the dataprovider itself. This is controlled by the servoy property "servoy.execute.column.validators.only.on.validate_and_save" which can also be seen at the TableEditor column validators page.
An extra state object can be given that will also be passed around if you want to have more state in the validation objects (like giving some ui state so the entity methods know where you come from)
It will return a JSRecordMarkers when the record had validation problems
Parameters
Validates the given record, it runs first the method that is attached to the entity event "onValidate". Then it will call also the entity events "onInsert" or "onUpdate" depending if the record is new or an update. All those methods do get a parameter JSRecordMarkers where the problems can be reported against.
All columns are then also null/empty checked and if they are and the Column is marked as "not null" an error will be added with the message key "servoy.record.error.null.not.allowed" for that column.
All changed columns are length checked and if the record values is bigger then what the database column can handle and error will be added with the message key "servoy.record.error.columnSizeTooSmall" for that column. Then all the column validators will be run over all the changed columns, The validators will also get the same JSRecordMarkers to report problems to. So the global method validator now also has more parameters then just the value.
These 3 validations (null, length and column validators) are not by default done any more on change of the dataprovider itself. This is controlled by the servoy property "servoy.execute.column.validators.only.on.validate_and_save" which can also be seen at the TableEditor column validators page.
An extra state object can be given that will also be passed around if you want to have more state in the validation objects (like giving some ui state so the entity methods know where you come from)
It will return a JSRecordMarkers when the record had validation problems
Parameters
Type
Type
Type
foundset The JSFoundset to get the lock for
recordIndex The record index which should be locked.
Returns: true if the lock could be acquired.
foundset The JSFoundset to get the lock for
recordIndex The record index which should be locked.
lockName The name of the lock.
Returns: true if the lock could be acquired.
query condition to filter on.
Returns: true if the table filter could be applied.
query condition to filter on.
filterName The specified name of the database table filter.
Returns: true if the table filter could be applied.
datasource The datasource
dataprovider A specified dataprovider column name.
operator One of "=, <, >, >=, <=, !=, LIKE, or IN" optionally augmented with modifiers "#" (ignore case) or "^||" (or-is-null), prefix with "sql:" to allow the value to be interpreted as a custom query.
value The specified filter value.
Returns: true if the table filter could be applied.
datasource The datasource
dataprovider A specified dataprovider column name.
operator One of "=, <, >, >=, <=, !=, LIKE, or IN" optionally augmented with modifiers "#" (ignore case) or "^||" (or-is-null), prefix with "sql:" to allow the value to be interpreted as a custom query.
value The specified filter value.
filterName The specified name of the database table filter.
Returns: true if the table filter could be applied.
serverName The name of the database server connection for the specified table name.
tableName The name of the specified table.
dataprovider A specified dataprovider column name.
operator One of "=, <, >, >=, <=, !=, LIKE, or IN" optionally augmented with modifiers "#" (ignore case) or "^||" (or-is-null), prefix with "sql:" to allow the value to be interpreted as a custom query.
value The specified filter value.
Returns: true if the table filter could be applied.
serverName The name of the database server connection for the specified table name.
tableName The name of the specified table.
dataprovider A specified dataprovider column name.
operator One of "=, <, >, >=, <=, !=, LIKE, or IN" optionally augmented with modifiers "#" (ignore case) or "^||" (or-is-null), prefix with "sql:" to allow the value to be interpreted as a custom query..
value The specified filter value.
filterName The specified name of the database table filter.
Returns: true if the table filter could be applied.
columnName The name of the column in the log table, used for tracking info
value The value to be set when inserting a new row in the log table, for the 'columnName' column
Returns: if the transaction could be committed.
saveFirst save edited records to the database first (default true)
Returns: if the transaction could be committed.
saveFirst save edited records to the database first (default true)
revertSavedRecords if a commit fails and a rollback is done, the when given false the records are not reverted to the database state (and are in edited records again)
Returns: if the transaction could be committed.
foundset The JSFoundset to convert.
related can be a one-to-many relation object or the name of a one-to-many relation
Returns: The converted JSFoundset.
foundset The JSFoundset to convert.
related the name of a one-to-many relation
Returns: The converted JSFoundset.
foundset The foundset to be converted.
Returns: JSDataSet with the data.
foundset The foundset to be converted.
dataproviderNames Array with column names.
Returns: JSDataSet with the data.
values The values array.
Returns: JSDataSet with the data.
values The values array.
dataproviderNames The property names array.
Returns: JSDataSet with the data.
ids Concatenated values to be put into dataset.
Returns: JSDataSet with the data.
source The source record or (java/javascript)object to be copied.
destination The destination record to copy to.
Returns: true if no errors happened.
source The source record or (java/javascript)object to be copied.
destination The destination record to copy to.
overwrite Boolean values to overwrite all values. If overwrite is false/not provided, then the non empty values are not overwritten in the destination record.
Returns: true if no errors happened.
source The source record or (java/javascript)object to be copied.
destination The destination record to copy to.
names The property names that shouldn't be overriden.
Returns: true if no errors happened.
name Data source name
query The query builder to be executed.
useTableFilters use table filters (default true).
max_returned_rows The maximum number of rows returned by the query.
types The column types, when null the types are inferred from the query.
pkNames array of pk names, when null a hidden pk-column will be added
Returns: datasource containing the results of the query or null if the parameters are wrong.
name data source name
query The query builder to be executed.
max_returned_rows The maximum number of rows returned by the query.
Returns: datasource containing the results of the query or null if the parameters are wrong.
name Data source name
query The query builder to be executed.
max_returned_rows The maximum number of rows returned by the query.
types The column types
Returns: datasource containing the results of the query or null if the parameters are wrong.
name Data source name
query The query builder to be executed.
max_returned_rows The maximum number of rows returned by the query.
types The column types
pkNames array of pk names, when null a hidden pk-column will be added
Returns: datasource containing the results of the query or null if the parameters are wrong.
name data source name
server_name The name of the server where the query should be executed.
sql_query The custom sql, must start with 'select', 'call', 'with' or 'declare'.
arguments Specified arguments or null if there are no arguments.
max_returned_rows The maximum number of rows returned by the query.
Returns: datasource containing the results of the query or null if the parameters are wrong.
name data source name
server_name The name of the server where the query should be executed.
sql_query The custom sql, must start with 'select', 'call', 'with' or 'declare'.
arguments Specified arguments or null if there are no arguments.
max_returned_rows The maximum number of rows returned by the query.
types The column types
Returns: datasource containing the results of the query or null if the parameters are wrong.
name data source name
server_name The name of the server where the query should be executed.
sql_query The custom sql, must start with 'select', 'call', 'with' or 'declare'.
arguments Specified arguments or null if there are no arguments.
max_returned_rows The maximum number of rows returned by the query.
columnTypes The column types
pkNames array of pk names, when null a hidden pk-column will be added
Returns: datasource containing the results of the query or null if the parameters are wrong.
Returns: An empty JSDataSet with the initial sizes.
rowCount The number of rows in the DataSet object.
columnCount Number of columns.
Returns: An empty JSDataSet with the initial sizes.
rowCount ;
columnNames ;
Returns: An empty JSDataSet with the initial sizes.
dataSource The data source to build a query for.
Returns: query builder
dataSource The data source to build a query for.
tableAlias The alias for the main table.
Returns: query builder
query condition to filter on.
Returns: table filter.
datasource The datasource
dataprovider A specified dataprovider column name.
operator One of "=, <, >, >=, <=, !=, LIKE, or IN" optionally augmented with modifiers "#" (ignore case) or "^||" (or-is-null), prefix with "sql:" to allow the value to be interpreted as a custom query.
value The specified filter value.
Returns: table filter.
serverName The name of the database server connection for the specified table name.
tableName The name of the specified table.
dataprovider A specified dataprovider column name.
operator One of "=, <, >, >=, <=, !=, LIKE, or IN" optionally augmented with modifiers "#" (ignore case) or "^||" (or-is-null), prefix with "sql:" to allow the value to be interpreted as a custom query.
value The specified filter value.
Returns: table filter or null when no filter could be created.
dataSource the datasource string to check.
Returns: boolean exists
datasource The datasource to flush all calculations of
onlyUnstored to only go over the unstore cals of this datasource
datasource The datasource to flush all calculations of
onlyUnstored to only go over the unstore cals of this datasource
calcnames A string array of calculation names that need to be flushed, if null then all unstored (or all depending on the boolean)
Returns: true if autosave if enabled.
serverName ;
Returns: A list of names of all database servers that have the property DataModelCloneFrom set to the specified server name, or null if an error occurs or no such servers exist.
query QBSelect query.
useTableFilters use table filters (default true).
max_returned_rows The maximum number of rows returned by the query.
Returns: The JSDataSet containing the results of the query.
query QBSelect query.
max_returned_rows The maximum number of rows returned by the query.
Returns: The JSDataSet containing the results of the query.
server_name The name of the server where the query should be executed.
sql_query The custom sql, must start with 'select', 'call', 'with' or 'declare'.
arguments Specified arguments or null if there are no arguments.
max_returned_rows The maximum number of rows returned by the query.
Returns: The JSDataSet containing the results of the query.
serverName The name of the table's server.
tableName The table's name.
Returns: The datasource of the given table/server.
dataSource The datasource string to get the server name from.
Returns: The servername of the datasource.
dataSource The datasource string to get the tablename from.
Returns: The tablename of the datasource.
serverName The specified name of the database server connection.
Returns: A database product name.
Returns: Array of outstanding/unsaved JSRecords.
foundset return edited records in the foundset only.
Returns: Array of outstanding/unsaved JSRecords.
datasource the datasource for which to get the edited records
Returns: Array of outstanding/unsaved JSRecords
datasource the datasource for which to get the edited records
filter criteria against which the edited record must match to be included
Returns: Array of outstanding/unsaved JSRecords
Returns: Array of failed JSRecords
foundset return failed records in the foundset only.
Returns: Array of failed JSRecords
query The query to get the JSFoundset for.
Returns: A new JSFoundset with that query as its base query.
dataSource The datasource to get a JSFoundset for.
Returns: A new JSFoundset for that datasource.
serverName The servername to get a JSFoundset for.
tableName The tablename for that server
Returns: A new JSFoundset for that datasource.
foundset The JSFoundset to get the count for.
Returns: the foundset count
foundset The foundset to update.
Returns: The JSFoundsetUpdater for the specified JSFoundset.
dataSource The datasource that points to the table which has the column with the sequence, or the name of the server where the table can be found. If the name of the server is specified, then a second optional parameter specifying the name of the table must be used. If the datasource is specified, then the name of the table is not needed as the second argument.
columnName The name of the column that has a sequence defined in its properties.
Returns: The next sequence for the column, null if there was no sequence for that column or if there is no column with the given name.
Returns: An Array of servernames.
foundset The foundset where the JSTable can be get from.
Returns: the JSTable get from the input.
record The record where the table can be get from.
Returns: the JSTable get from the input.
dataSource The datasource where the table can be get from.
Returns: the JSTable get from the input.
serverName Server name.
tableName Table name.
Returns: the JSTable get from the input.
dataSource Data where a server table can be get from. Can be a foundset, a datasource name or a JSTable.
Returns: the total table count.
serverName The name of the database server connection.
Returns: Two dimensional array.
serverName The name of the database server connection.
filterName The filter name for which to get the array.
Returns: Two dimensional array.
serverName The server name to get the table names from.
Returns: An Array with the tables names of that server.
name The name to lookup a ViewFoundSet for
Returns: A new ViewFoundSet for that query.
name The name given to this foundset (will create a datasource url like view:[name])
query The query to get the ViewFoundSet for.
Returns: A new ViewFoundSet for that query.
name The name given to this foundset (will create a datasource url like view:[name])
query The query to get the ViewFoundSet for.
register Register the created ViewFoundSet to the system so it can be used by forms.
Returns: A new JSFoundset for that query.
serverName The server name to get the view names from.
Returns: An Array with the view names of that server.
Returns: true if the current client has locks or the lock.
lockName The lock name to check.
Returns: true if the current client has locks or the lock.
foundset The JSFoundset to test.
Returns: true if the JSFoundset has new records or JSRecord is a new record.
foundset The JSFoundset to test.
index The record index in the foundset to test (not specified means has the foundset any new records)
Returns: true if the JSFoundset has new records or JSRecord is a new record.
foundset The JSFoundset to test if it has changes.
Returns: true if there are changes in the JSFoundset or JSRecord.
foundset The JSFoundset to test if it has changes.
index The record index in the foundset to test (not specified means has the foundset any changed records)
Returns: true if there are changes in the JSFoundset or JSRecord.
foundset A JSFoundset to test.
Returns: true if the foundset/relation has records.
record A JSRecord to test.
relationString The relation name.
Returns: true if the foundset/relation has records.
Returns: true if the client has a transaction.
sourceRecord The source JSRecord to copy from.
combinedDestinationRecord The target/destination JSRecord to copy into.
Returns: true if the records could me merged.
sourceRecord The source JSRecord to copy from.
combinedDestinationRecord The target/destination JSRecord to copy into.
columnNames The column names array that should be copied.
Returns: true if the records could me merged.
foundsetOrRecord JSFoundset or JSRecord to recalculate.
foundset The JSFoundset to refresh
index The index of the JSRecord that must be refreshed (or -1 for all).
Returns: true if the refresh was done.
Returns: true if all locks or the lock is released.
lockName The lock name to release.
Returns: true if all locks or the lock is released.
uri ;
Returns: true if the data source was successfully removed; false otherwise.
serverName The name of the database server connection.
filterName The name of the filter that should be removed.
Returns: true if the filter could be removed.
foundset A JSFoundset to revert.
rollbackEdited call rollbackEditedRecords() before rolling back the transaction
rollbackEdited call rollbackEditedRecords() before rolling back the transaction
revertSavedRecords if false then all records in the transaction do keep the user input and are back in the edited records list. Note that if the pks of such a record are no longer used by it's foundset (find/search or load by query or ...) it will just be rolled-back as it can't be put in editing records list.
Returns: true if the save was done without an error.
foundset The JSFoundset to save.
Returns: true if the save was done without an error.
record The JSRecord to save.
Returns: true if the save was done without an error.
records The array of JSRecord to save.
Returns: true if the save was done without an error.
autoSave Boolean to enable or disable autosave.
Returns: false if the current edited record could not be saved.
filterName The name of the filter that should be set.
tableFilters list of filters to be applied.
Returns: true if the table filters could be applied.
sourceName The name of the source database server connection
destinationName The name of the destination database server connection.
Returns: true if the switch could be done.
record The record to validate.
Returns: Returns a JSRecordMarkers if the record has validation problems
record The record to validate.
customObject The extra customObject that is passed on the the validation methods.
Returns: a JSRecordMarkers object containing validation problems, or null if no validation issues were found.