Update of /cvsroot/queryviewer/queryviewer/src/net/sourceforge/queryviewer/ui/swing
In directory sc8-pr-cvs1:/tmp/cvs-serv11196
Modified Files:
ConnectionTab.java
Log Message:
Changement des valeurs par défaut des champs
Index: ConnectionTab.java
===================================================================
RCS file: /cvsroot/queryviewer/queryviewer/src/net/sourceforge/queryviewer/ui/swing/ConnectionTab.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** ConnectionTab.java 23 Jun 2003 14:40:48 -0000 1.7
--- ConnectionTab.java 25 Jun 2003 15:00:13 -0000 1.8
***************
*** 95,107 ****
*/
/*
! this.userInputs.put( QueryActions.TF_JDBC_DRIVER, new JTextField( 30 ) );
! this.userInputs.put( QueryActions.TF_JDBC_URL, new JTextField( 40 ) );
this.userInputs.put( QueryActions.TF_JDBC_USERNAME, new JTextField( 20 ) );
this.userInputs.put( QueryActions.TF_JDBC_PASSWORD, new JTextField( 20 ) );
*/
! this.userInputs.put( QueryActions.TF_JDBC_DRIVER, new JTextField( "org.postgresql.Driver" ) );
! this.userInputs.put( QueryActions.TF_JDBC_URL, new JTextField( "jdbc:postgresql://vbstefi60.fapse.ulg.ac.be:5432/lcp" ) );
! this.userInputs.put( QueryActions.TF_JDBC_USERNAME, new JTextField( "lcp" ) );
! this.userInputs.put( QueryActions.TF_JDBC_PASSWORD, new JTextField( "lcpass" ) );
JPanel result = new JPanel( new GridLayout( 1, 1 ) );
--- 95,107 ----
*/
/*
! this.userInputs.put( QueryActions.TF_JDBC_DRIVER, new JTextField( 25 ) );
! this.userInputs.put( QueryActions.TF_JDBC_URL, new JTextField( 30 ) );
this.userInputs.put( QueryActions.TF_JDBC_USERNAME, new JTextField( 20 ) );
this.userInputs.put( QueryActions.TF_JDBC_PASSWORD, new JTextField( 20 ) );
*/
! this.userInputs.put( QueryActions.TF_JDBC_DRIVER, new JTextField( "org.postgresql.Driver", 25 ) );
! this.userInputs.put( QueryActions.TF_JDBC_URL, new JTextField( "jdbc:postgresql://vbstefi60.fapse.ulg.ac.be:5432/lcp", 30 ) );
! this.userInputs.put( QueryActions.TF_JDBC_USERNAME, new JTextField( "lcp", 20 ) );
! this.userInputs.put( QueryActions.TF_JDBC_PASSWORD, new JTextField( "lcpass", 20 ) );
JPanel result = new JPanel( new GridLayout( 1, 1 ) );
|