谢谢大家的帮助 !
我设法解决了这个问题。我做了什么,如果这可以帮助我在这里发布的人:
首先,为我创建另一个类,我在其中创建 DataSource 的 Driver() :
public class Driver implements DataSource {
public static Connection connection = null;
public static final String url = "jdbc:mysql://url/dataBaseName";
protected String user = "userName";
protected String passwd = "password";
//Andoid related, haven't tested the log so, i don't know if this work.
private String state = Environment.getExternalStorageState();
public Driver(){
try {
Class.forName("com.mysql.jdbc.Driver");
} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
@Override
public PrintWriter getLogWriter() throws SQLException {
PrintWriter logWriter = null;
if (Environment.MEDIA_MOUNTED.equals(state)) {
// We can read and write the media
try {
logWriter = new PrintWriter(state + "/com.me.appName/Logfile.log");
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
return logWriter;
}
@Override
public int getLoginTimeout() throws SQLException {
// TODO Auto-generated method stub
return 0;
}
@Override
public void setLogWriter(PrintWriter arg0) throws SQLException {
// TODO Auto-generated method stub
if (Environment.MEDIA_MOUNTED.equals(state)) {
// We can read and write the media
try {
DriverManager.setLogWriter(new PrintWriter(
state + "/com.me.appName/Logfile.log"));
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
@Override
public void setLoginTimeout(int seconds) throws SQLException {
// TODO Auto-generated method stub
}
@Override
public boolean isWrapperFor(Class<?> arg0) throws SQLException {
// TODO Auto-generated method stub
return false;
}
@Override
public <T> T unwrap(Class<T> arg0) throws SQLException {
// TODO Auto-generated method stub
return null;
}
@Override
public Connection getConnection() throws SQLException {
if (connection != null) {
System.out.println("Cant create Connection");
} else {
connection = DriverManager.getConnection(
url, user, passwd);
}
return connection;
}
@Override
public Connection getConnection(String userName, String password)
throws SQLException {
// TODO Auto-generated method stub
if (connection != null) {
System.out.println("Cant craete a Connection");
} else {
connection = DriverManager.getConnection(
url, userName,
password);
}
return connection;
}
}
最后在我的主要课程中:
在 onCreate() 我实例化驱动程序然后我可以毫不拖延地提出所有需要的请求:)
public void onClick(View v) {
// Perform action on click
new Thread(new Runnable() {
public void run() {
try {
Statement statement;
//The .getConnection is where i handle the DriverManager.
connexion = driver.getConnection();
statement = connexion.createStatement();
ResultSet resultat = statement
.executeQuery("SELECT name FROM users;");
while (resultat.next()) {
resultId = resultat.getString("name");
}
driver.setLoginTimeout(5);
} catch (SQLException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
}
}).start();
这真的很有用。
再次感谢大家,对不起,我不能投票给你的答案,希望有一天能帮助你!