Package com.art.anette.client.database

Examples of com.art.anette.client.database.ClientDB.query()


            if (logins.containsKey(lr)) {
                loginData = lr;
                try {
                    long id = logins.get(lr);
                    ClientDB cdb = new ClientDB(id);
                    ResultSet rs = cdb.query(SQLFormatter.generateQuery("SELECT * FROM %s WHERE id = %d", Employee.getTableName(), id));
                    if (!rs.next()) {
                        logger.warning("The login is known but not available in the local database. Raise an error to refetch from server.");
                        rs.close();
                        throw ex;
                    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.