Inheritance diagram for org.openmobileis.modules.common.database.jdbc.JDBCGlobalPropertyQueryManager:
To change the template for this generated type comment go to Window>Preferences>Java>Code Generation>Code and Comments
Definition at line 48 of file JDBCGlobalPropertyQueryManager.java.
Public Member Functions | |
JDBCGlobalPropertyQueryManager () | |
void | createSyncTable () throws ServiceException, java.sql.SQLException, DatabaseException |
void | create (String parameters[]) throws DatabaseException |
void | delete (String parameters[]) throws DatabaseException |
void | update (String parameters[]) throws DatabaseException |
ResultSet | getGlobalProperty (String[] param) throws DatabaseException |
ResultSet | getPropertiesForService (String[] param) throws DatabaseException |
ResultSet | getAllGlobalProperties () throws DatabaseException |
GlobalProperty | convertResultSetToProperty (ResultSet result) throws DatabaseException |
String[] | getInsertParamFromProperty (GlobalProperty property) |
String[] | getUpdateParamFromProperty (GlobalProperty property) |
Static Protected Attributes | |
static String | queryGetGlobalProperty = "SELECT idservice, propkey, propvalue FROM oooglobalproperties where idservice='%0%' AND propkey='%1%'" |
static String | queryGetPropertiesForService = "SELECT idservice, propkey, propvalue FROM oooglobalproperties where idservice='%0%'" |
static String | queryGetAllGlobalProperties = "SELECT idservice, propkey, propvalue FROM oooglobalproperties" |
static String | queryInsertGlobalProperty |
static String | queryUpdateGlobalProperty |
static String | queryDeleteGlobalProperty = "DELETE FROM oooglobalproperties where idservice='%0%' AND propkey='%1%'" |