我正在使用带有JDTS驱动程序的eclipse。我试图在MySQL数据库中插入一行。连接和语句生成得很好(我认为)但是当我运行我的executeUpdate方法时,我得到一个空指针异常。
我有一个DBclient类来处理与DB的连接,然后我有一个Uploader类,它将收集所有相关信息并将其提供给我的insert方法。
我的DBclient类:
public class DBclient {
String driver="net.sourceforge.jtds.jdbc";
String URL="xxxx";
String user="xxxx";
String pass="xxxx";
Connection connection;
Statement statement;
ResultSet rs;
public void connect() throws SQLException
{
try {
Class.forName(driver);
}//try
catch (ClassNotFoundException e)
{
e.printStackTrace();
}//catch
try {
connection=DriverManager.getConnection(URL, user, pass);
statement=connection.createStatement();
} //try
catch (SQLException e)
{
e.printStackTrace();
}//catch
}//connect
public void insertToDB(String sqlstatement) throws SQLException
{
int i=statement.executeUpdate(sqlstatement);
}
} //与dbclient
然后是我的Uploader类
private String testinsert="insert into xxxx (Latitude, Longitude) values (1, 2)";
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.uploader);
initialize();
getaddress();
update();
try {
client.insertToDB(testinsert);
} catch (SQLException e) {
// TODO Auto-generated catch block
Toast t=Toast.makeText(getApplicationContext(), "oops", 4);
t.show();
}
}//onCreate
public void initialize()
{
client = new DBclient();
geocoder = new Geocoder(this);
Bundle coords = getIntent().getExtras();
street = (TextView) findViewById(R.id.street);
town = (TextView) findViewById(R.id.town);
state = (TextView) findViewById(R.id.state);
country = (TextView) findViewById(R.id.country);
lat=coords.getDouble("Latitude");
lon=coords.getDouble("Longitude");
}//initialize
public void update()
{
street.setText(address.getAddressLine(0));
town.setText(address.getLocality());
state.setText(address.getAdminArea());
country.setText(address.getCountryName());
}//update
public void getaddress()
{
try
{
addresslist = geocoder.getFromLocation(lat, lon, 1);
} //try
catch (IOException e)
{
Toast t=Toast.makeText(getApplicationContext(), "Input Error", 2);
t.show();
}//catch
address=addresslist.get(0);
}
} //上传
从DBclient类的insertToDB()方法抛出Null指针异常。
任何帮助将不胜感激。
答案 0 :(得分:2)
public void insertToDB(String sqlstatement) throws SQLException
{
int i=statement.executeUpdate(sqlstatement);
}
看起来statement
只在connect()
类的DBClient
中设置,但是在问题中显示的任何其他代码中都没有调用此方法。因此statement
将为null,并且从中调用方法将生成NullPointerException
。
答案 1 :(得分:0)
事实证明我遇到了与用户here
相同的问题我要做的是将jtds.jar添加到我的assetts文件夹,将其添加到我的构建路径,然后在“配置构建路径”菜单中,转到订单并导出,并检查jar文件。