-
Notifications
You must be signed in to change notification settings - Fork 0
daoGetFieldSelection
tarimshahab edited this page May 22, 2015
·
3 revisions
Related DAO Code
List<LookupPair> map = new ArrayList<LookupPair>();
connect();
useApp(application);
field = field.replace("Multi", "");
String sql = "select "+field+"Key, "+field+"Label from lkup_"+field+
" where "+field+"Order > -1 order by "+field+"Order";
ResultSet rs=st.executeQuery(sql);
while(rs.next())
{
map.add(new LookupPair(rs.getString(1),rs.getString(2)));
}
rs.close();
disconnect();
return map;
-
Quickforms Basics
-
Tutorials
- Setup Tutorials
- App Development Tutorials
-
Assignments
-
Project
-
Applications
-
Quickforms Advanced
- Project With Database
- Advanced Setup
- HealthApp with Database
- Source Control
- Joining the Team
- Cordova Native Application
- Miscellaneous
- Project With Database
-
-
Form Controls
-
App Controls
-
Report Controls
-
Server Controls
-
Quickforms DAO
-
Email Notification
-
Migrating QuickForms3(Test Server) to QuickForms(Production-Server)