schema
This namespace contains the collection of objects that manage relational data in your application.
- Description:
This namespace contains the collection of objects that manage relational data in your application.
A
parasql.schema.TransactionSetis a collection of one or more relatedparasql.schema.DataTableobjects. Each DataTable contains an array ofparasql.schema.ColumnInfoobjects that hold info about each column (e.g. its name, datatype, etc.) and an array ofparasql.schema.DataRowobjects that in turn have an array ofparasql.schema.DataValueobjects that contain the actual raw data values. If you make changes to multiple data values across multible tables within the same transaction set, all of the changes (including all inserts, updates, and deletes) can be saved within a single transaction by calling theparasql.schema.TransactionSet#savemethod.Note that if you change the value of a DataValue object that change will not become visible in the user interface of your application until you call
parasql.widget.AbstractWidget#redisplayon the widget or one of its parents.