删:
Connection conn=SQLHelper.getConnection();
try
{
String sql="delete from user where username=xiao";
Statement stm=conn.createStatement();
stm.execute(sql);
conn.close();
}
catch(Exception ex)
{
}
Connection conn=SQLHelper.getConnection();
try
{
String sql="delete from user where username=xiao";
Statement stm=conn.createStatement();
stm.execute(sql);
conn.close();
}
catch(Exception ex)
{
}