?? amend_line.java
字號:
package tour_lines;
import java.sql.*;
public class amend_line
{
public String tour_line_name;
public String tour_line_intro;
public String hot_tour_line;
public String line_name;
public Connection con;
public boolean amend_exe() throws Exception {
try{
Statement statement=con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);
String sql="update tour_line_info set tour_line_name='"+tour_line_name+"',tour_line_intro='"+tour_line_intro+"',hot_tour_line='"+hot_tour_line+"' where tour_line_name='"+line_name+"'";
statement.executeUpdate(sql);
return true;
}catch(SQLException ee)
{
return false;
}
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -