home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Symantec Visual Cafe for Java 2.5
/
symantec-visual-cafe-2.5-database-dev-edition.iso
/
Visual Cafe Pro v1.0
/
VISCAFE.BIN
/
SQL.ZIP
/
symjava
/
sql
/
Driver.class
(
.txt
)
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Java Class File
|
1997-06-11
|
542 b
|
18 lines
package symjava.sql;
import java.util.Properties;
public interface Driver {
Connection connect(String var1, Properties var2) throws SQLException;
boolean acceptsURL(String var1) throws SQLException;
DriverPropertyInfo[] getPropertyInfo(String var1, Properties var2) throws SQLException;
int getMajorVersion();
int getMinorVersion();
boolean jdbcCompliant();
}