我正与 JDTS 驱动程序使用日蚀。 我正试图在 MySQL 数据库中插入一行。 连接和语句生成得很好( 我认为) 但是当我运行我的执行更新方法时, 我得到了一个无效的指针例外 。
我有一个DB客户类 处理 DB 的连接, 然后我有一个上传者类 收集所有相关信息 并提供给我插入的方法。
我的DB客户类 :
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);
}
}//DB客户
和我的上传者课
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);
}
}//上载器
从 DB client 类插入的 ToDB () 方法中丢弃 Null 指针例外 。
任何帮助都会感激不尽