Calendar

June 2007
M T W T F S S
« May   Jul »
 123
45678910
11121314151617
18192021222324
252627282930  

Tag Cloud

Categories

Archives

Highest Rated

Most Viewed

Recent Posts

Recent Comments

Archive for June 12th, 2007

AIR Embedded Database Code Exerpts 1

Tuesday, June 12th, 2007

Here are some excerpts for the AIR Embedded Database post.
The class below on init will attempt to open the database file and if it is not found will then create the database file and then call the functions to create the tables.
Creating the database:
package com.everythingflex.employeeDirectory.utils
{
    import com.adobe.cairngorm.control.CairngormEventDispatcher;
    import com.everythingflex.employeeDirectory.control.GetUserIdEvent;
    import com.everythingflex.employeeDirectory.dao.EmployeeDAO;
    [...]