blob: 484a718b3239f1df58b1effbb81c5adf6a6985d6 [file] [log] [blame]
package com.mysql.jdbc;
import java.sql.Connection;
import java.sql.DriverPropertyInfo;
import java.sql.SQLException;
import java.util.Properties;
public class Driver implements java.sql.Driver {
@Override
public boolean acceptsURL(String arg0) throws SQLException {
// TODO Auto-generated method stub
return false;
}
@Override
public Connection connect(String arg0, Properties arg1) throws SQLException {
// TODO Auto-generated method stub
return null;
}
@Override
public int getMajorVersion() {
// TODO Auto-generated method stub
return 0;
}
@Override
public int getMinorVersion() {
// TODO Auto-generated method stub
return 0;
}
@Override
public DriverPropertyInfo[] getPropertyInfo(String arg0, Properties arg1)
throws SQLException {
// TODO Auto-generated method stub
return null;
}
@Override
public boolean jdbcCompliant() {
// TODO Auto-generated method stub
return false;
}
}