Update of /cvsroot/squirrel-sql/sql12/test/mockobjects/net/sourceforge/squirrel_sql/fw/sql
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv1839/test/mockobjects/net/sourceforge/squirrel_sql/fw/sql
Modified Files:
MockSQLAlias.java
Log Message:
Aliases now have the ability to setup keep-alive SQL statement and sleep time (in seconds) to prevent a connection from being disconnected while appearing to be idle.
Index: MockSQLAlias.java
===================================================================
RCS file: /cvsroot/squirrel-sql/sql12/test/mockobjects/net/sourceforge/squirrel_sql/fw/sql/MockSQLAlias.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** MockSQLAlias.java 28 Nov 2009 20:33:55 -0000 1.5
--- MockSQLAlias.java 19 Dec 2009 21:33:51 -0000 1.6
***************
*** 25,28 ****
--- 25,29 ----
import net.sourceforge.squirrel_sql.client.gui.db.ISQLAliasExt;
import net.sourceforge.squirrel_sql.client.gui.db.SQLAliasColorProperties;
+ import net.sourceforge.squirrel_sql.client.gui.db.SQLAliasConnectionProperties;
import net.sourceforge.squirrel_sql.client.gui.db.SQLAliasSchemaProperties;
***************
*** 189,191 ****
--- 190,206 ----
}
+
+ @Override
+ public SQLAliasConnectionProperties getConnectionProperties()
+ {
+ // TODO Auto-generated method stub
+ return null;
+ }
+
+ @Override
+ public void setConnectionProperties(SQLAliasConnectionProperties connectionProperties)
+ {
+ // TODO Auto-generated method stub
+
+ }
}
|