Package net.rim.device.api.database

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


                            .getModuleHandle("SQLiteDemo"), "XYZ");

            try {
                // Encrypt and protect the database. If the database is already
                // encrypted, the method will exit gracefully.
                DatabaseFactory.encrypt(uri, new DatabaseSecurityOptions(
                        codeSigningKey));
            } catch (final DatabaseException dbe) {
                errorDialog("Encryption failed - " + dbe.toString());
            }
View Full Code Here

TOP

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

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.