Update of /cvsroot/queryviewer/queryviewer/src/net/sourceforge/queryviewer
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10968
Modified Files:
Connection.java
Log Message:
dépréciée! utiliser java.sql.Connection
Index: Connection.java
===================================================================
RCS file: /cvsroot/queryviewer/queryviewer/src/net/sourceforge/queryviewer/Connection.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Connection.java 22 Jun 2003 21:08:23 -0000 1.4
--- Connection.java 23 Jun 2004 11:42:21 -0000 1.5
***************
*** 4,8 ****
/**
! *
* @author arnaud <a href="mailto:arn...@ul...">Arnaud Vandyck</a>
* @version $Id$
--- 4,8 ----
/**
! * @deprecated Utiliser plutôt {@link java.sql.Connection}
* @author arnaud <a href="mailto:arn...@ul...">Arnaud Vandyck</a>
* @version $Id$
***************
*** 10,19 ****
public interface Connection {
- /**
- * @deprecated use {@link #performQuery(Query)} instead
- */
- public String[][] performQuery(Query query)
- throws QueryException;
-
public String[][] performQuery(String queryString)
throws QueryException;
--- 10,13 ----
|