SET CLASSPATH=..;.;c:\jdk1.3\jre\lib\rt.jar;c:\jars\mysql_uncomp.jar;c:\jars\swiftappj.jar;c:\jars\dg_code.jar
At this step (3) things have been done
The base form may be run by
java dgregtest.dgreg_test_form
At this stage, no methods have been overridden but the extended form may be run by
java dgregtest.ovr_dgreg_test_form
build.bat
/** declarations of added Objects */
If MySQL is running on your local machine the default jdbc:mysql://localhost:3306/test should work When MySQL is installed , this database is accessible to any user without a password*/ properties_from_file init_props = null;
/** sets up connection browse, update models */ public boolean init_connection(String connect_str) { /** this shows the login dialog and tries to connect */ connection_manager.qualified_connection c2 = manager.get_qualified_connection(connect_str); if (c2 == null) // check if we got a connection { app_con = null; return false; } else { app_con = c2.conn; /** connect the util_mod data_table_model */ util_mod.submit_qry(app_con, manager.get_statement(app_con)); /** connect the browse table's model to the database */ browse1.get_model().submit_qry(app_con, manager.get_statement(app_con),test_form.get_select_string()); NOTE: To have correct function in the next steps, you must use the SQL select generated by the form by using " test_form.get_select_string() " as an initializing query. /** actually run the browse to display some records */ browse1.get_model().run_qry(); /** return true if everything is OK */ return true; } }
public void drop_connection() { System.out.println(" drop connection top"); manager.cleanup_connection(app_con); }
/** try to connect , exit if not */ if (! init_connection(URL)) { JOptionPane.showMessageDialog(null, "CANNOT CONNECT TO URL \n APPLICATION WILL NOT BE STARTED ", "ERROR OCCURRED!!", JOptionPane.ERROR_MESSAGE); System.exit(0); }
/** add a WindowAdapter to close Connection on exit */ addWindowListener(new WindowAdapter() { public void windowClosing(java.awt.event.WindowEvent ev) { { drop_connection(); }} });
/** connect the button panel and browse to the form */ button_p.set_refs(browse1.get_model(), util_mod, this, test_form);
Where parameters are:
/** add some lookup controls to the browse panel */ browse1.get_browse_pan() .add_selector("CUST# ","DCUST_MAST.DCMST_NUM",data_table_model.TEXT,false); browse1.get_browse_pan() .add_selector("name ","DCUST_MAST.DCMST_NAME",data_table_model.TEXT,false); browse1.get_browse_pan() .add_selector("address ","DCUST_MAST.DCMST_ADRS",data_table_model.TEXT,false); browse1.get_browse_pan() .add_selector("CITY ","DCUST_MAST.DCMST_CITY",data_table_model.TEXT,false);
public boolean pre-XXX() and public boolean post-XXX() methods.
By default, these methods do nothing, but may be overridden to add processing to the basic functionality of the form
ovr_dgreg_test_form.java
"WHS" for wholesaler "RET" for retailer "RES" for residential
:/** step 6 added declarations */ /** this will function similarly to a prepared statement, and allow us to check exist ence of a customer number before allowing an insert */ statement_preparer exist_check = new statement_preparer( " SELECT COUNT( * ) from DCUST_MAST WHERE DCMST_NUM = ? " ) ; data_table_model util_mod = null; JComboBox class_combo = null;
/** overridden to set ref to external model in this class this is done for convenience in referencing the added model */ public void add_extern_model(data_table_model ext_mod) { if (external_models.size() == 0) { util_mod = ext_mod; } super.add_extern_model( ext_mod) ; }
/** in init_connection() connect the util_mod to the form*/ test_form.add_extern_model(util_mod);
In this step , we will override several methods to allow validation ,and improve the behavior of our saample application.
/** check record before inserting This is pretty much a mechanical process, just check values in the form either internally , or as in the case of CUSTOMER number , check by doing a database lookup . return true if everything is ok. show a dialog and give the user a choice to save or not if optional stuff is missing the call to button_p.reset_for_new(); just re-sets the button panel for another try pre-update is basically the same, except it assumes we have a valid customer number if we're editing an existing record. */ public boolean pre_insert() { /** check fields for filled before insert */ StringBuffer msg_buf = new StringBuffer(); boolean insrt_ok = true; boolean ok_to_check = true ; // check pieces of primary key String tmp_str0 = (String)DCUST_MAST_DCMST_NUM.getValue(); if ((tmp_str0 == null) || (tmp_str0.trim().length() != 3)) { insrt_ok = false; ok_to_check = false ; // if not 3 chars , bypass next check msg_buf.append(" DCMST_NUM MUST BE THREE CHARACTERS\n" ); } String tmp_str1 = (String)DCUST_MAST_DCMST_NAME.getValue(); if ((tmp_str1 == null) || (tmp_str1.trim().length() <5 )) { insrt_ok = false; ok_to_check = false ; // if not 3 chars , bypass next check msg_buf.append(" NAME MUST BE AT LEAST 5 CHARACTERS \n" ); } String tmp_str2 = (String)DCUST_MAST_DCMST_CLASS.getValue(); if ((tmp_str2 == null) || (tmp_str2.trim().length() != 3)) { insrt_ok = false; ok_to_check = false ; // if not 3 chars , bypass next check msg_buf.append(" CLASS MUST BE FILLED IN\n" ); } String tmp_str3 = (String)DCUST_MAST_DCMST_ZIP.getValue(); if ((tmp_str3 == null) || (tmp_str3.trim().length()<5 )) { msg_buf.append(" WARNING: ZIP NOT FILLED IN\n" ); } String tmp_str4 = (String)DCUST_MAST_DCMST_REGION.getValue(); if ((tmp_str4 == null) || (tmp_str4.trim().length()<4 )) { msg_buf.append(" WARNING: ZIP NOT FILLED IN\n" ); } /** this is skipped in pre_update() this actually checks the database to see if the customer number to be inserted already exists */ if (ok_to_check) { exist_check.set_object(1,DCUST_MAST_DCMST_NUM.getValue()); Vector is_exist = util_mod.run_immediately(exist_check.get_string() ); if (util_mod.exists(is_exist)) { insrt_ok = false; msg_buf.append(" ALREADY EXISTS\n" ); } } if (insrt_ok== false )// errors in addition to warnings { set_err_msg(msg_buf.toString()); if (button_p != null) button_p.reset_for_new(); return false; } else // if just warnings , show , let user decide to save or not if (msg_buf.length() >10) { int is_ok = JOptionPane.YES_OPTION; msg_buf.append( "DO YOU WANT TO SAVE ANYWAY\n"); is_ok = warning_dialogs.show_confirm_dialog( parent_frame, new scrol_dialog_txt(msg_buf.toString()) , " SOME VALUES MISSING !!!", JOptionPane.YES_NO_OPTION, JOptionPane.WARNING_MESSAGE ,warning_dialogs.NO_BUTTON); if (is_ok != JOptionPane.YES_OPTION) { set_err_msg(" CURRENT OPERATION ABORTED \n" + " BY USER "); if (is_ok == JOptionPane.NO_OPTION) { if (button_p != null) button_p.reset_for_new(); } else clear_form_values(); return false; // false if want to continue editing } } return true; }
Next, we will get a little fancier
CREATE TABLE REGIONS( REG_NUM CHAR(4), REG_NAME CHAR(20) );
At this point, we will not do any fancy validation, all this table is for is to demonstrate the use of record select tables
the side buttons labelled "<" and ">" can be used to cycle through all components in the card_panel
/** connect it to the form this will send the selected row to a method called public void set_from_vector(Vector v,int form_idx) which we will implement in the form below */ sel_tab.set_form_ref(test_form,1); /** connect the selector */ sel_tab.get_model().submit_qry(app_con, manager.get_statement(app_con)," SELECT * from REGIONS"); /** actually run the browse to display some records */ sel_tab.get_model().run_qry();
/** allows selectors etc to be wired by setting an entry_form reference, to set form values ; multiple controls can use this method, can tell them apart by their int index */ public void set_from_vector(Vector v,int form_idx) { if (form_idx ==1) set_field_value( "DCUST_MAST","DCMST_REGION", v.elementAt(0) ); }
sel_tab.add_selector("NUMBER ","REGION.REG_NUM",data_table_model.TEXT,false); sel_tab.add_selector("NAME ","REGION.REG_NAME",data_table_model.TEXT,false);
At this point region codes can be looked up in the lower selector, clicking the "set form field" button sets the region field of the form
Validation also works
At this step we will add some code to control column widths of the browse controls.
Code changes are as follows:
/** these just set display widths of each column in pixels */ browse1.get_model().set_col_wid(0,42); browse1.get_model().set_col_wid(1,103); browse1.get_model().set_col_wid(2,101); browse1.get_model().set_col_wid(3,103); browse1.get_model().set_col_wid(4,33); browse1.get_model().set_col_wid(5,69); browse1.get_model().set_col_wid(6,115); browse1.get_model().set_col_wid(7,114); browse1.get_model().set_total_wid(680); sel_tab.get_model().set_col_wid(0,80); sel_tab.get_model().set_col_wid(1,415);
void Button19_click(ActionEvent act_ev) { // start of method /** this will show widths each column is set to, width of columns may be manually set before calling this. */ JOptionPane.showMessageDialog(null, new scrol_dialog_txt( field_defaults.show_cols(browse1.get_table(),"browse1.get_model().")+ field_defaults.show_cols(sel_tab.sel_table,"sel_tab.get_model().")) ,"ERROR!!", JOptionPane.ERROR_MESSAGE); } // end of method
/** this assures the app is visible before we connect */ setVisible(true);