Topics
- Introduction 1
- SQL Yoga Primer 3
- Notes on Error Reporting 3
- General Concepts 4
- Database Objects 5
- Database Connections 5
-
SQL Query Objects
6
- Introduction to SQL Query Objects
- Creating A SQL Query Object
- How Do I Create Records In a Database Table Using a SQL Query Object?
- How Do I Delete Records From the Database Table Using a SQL Query Object?
- How To Use Cursors With a SQL Query Object
- How Can I Convert a User Search String Into An AND/OR Search When Generating a Query?
- Record Objects 5
- Table Objects 4
- Table Relationships 3
Other Resources
How-tos
- Lessons
GLX Application Framework
- GLX Application Framework 1.1
- Converting An Existing Application To Use The Framework
SQL Yoga
- SQL Yoga
- SQL Yoga Examples
- SQL Yoga To-Do Application
- SQL Yoga IDE Plugin
Plugins, Externals and Libraries
- Plugins
Comments
0 comments for this lesson
Introduction to Table Objects
The Table Object
SQL Yoga is able to automate a number of tasks because it imports information about the database tables and table fields. SQL Query and Record objects can be used out of the box without doing anything more than setting up a Connection to the database.
Some of SQL Yoga's features require some configuration on your part however:
• Adding custom properties to database tables.
• Setting search conditions using Scope objects
• Defining validation routines that are run before data is inserted into a table.
• Defining callbacks when records are created, deleted, retrieved or updated from a table.
• Automatically linking and unlinking records in two related tables.
• Turning SQL record sets into hierarchal arrays based on relationships between tables.
• Retrieving the related records from a table that is related to a SQL Record object's table.
Table objects unlock these features.
Refer to the API documention for Table objects for all handlers and properties available.


Add your comment