Inheritance diagram for org.openmobileis.examples.mycrm.data.jdbc.MyCrmLabelQuery:
TODO To change the template for this generated type comment go to Window - Preferences - Java - Code Style - Code Templates
Definition at line 51 of file MyCrmLabelQuery.java.
Public Member Functions | |
MyCrmLabelQuery () | |
void | init () throws ServiceException |
Label | convertLabelFromResult (ResultSet result) throws Exception |
void | createLabel (String[] parameters) throws DatabaseException |
ResultSet | getAllLabelIds () throws DatabaseException |
ResultSet | getLabel (String[] param) throws DatabaseException |
ResultSet | getAllLabel () throws DatabaseException |
Protected Member Functions | |
String | getCreateTableQuery () |
Static Protected Attributes | |
static String | queryInsertLabel |
static String | queryGetALlIDsLabels = "SELECT labelId from label" |
static String | queryGetLabel = "SELECT labelId, categoryId, label from label where labelId='%0%' AND categoryId='%1%'" |
static String | queryGetLabelsForCategory = "SELECT labelId, categoryId, label from label where categoryId='%0%'" |
static String | queryGetALlLabels = "SELECT labelId, categoryId, label from label" |
static String | queryDeleteLabel = "DELETE FROM label where labelId='%0%'AND categoryId='%1%'" |