Package net.rim.device.api.database

Examples of net.rim.device.api.database.DatabaseOptions


                errorDialog("Encryption failed - " + dbe.toString());
            }

            // Create a new DatabaseOptions object forcing foreign key
            // constraints
            final DatabaseOptions databaseOptions = new DatabaseOptions();
            databaseOptions.set("foreign_key_constraints", "on");

            // Open the database
            db = DatabaseFactory.open(uri, databaseOptions);

            // Create a new main screen and push it onto the display stack
View Full Code Here

TOP

Related Classes of net.rim.device.api.database.DatabaseOptions

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.