bulletin_amend.java

来自「一、 网站名称:旅游信息管理网站 二、 编程语言:JSP+javabean+s」· Java 代码 · 共 34 行

JAVA
34
字号
package bull;

import java.sql.*;

public class bulletin_amend
{

public String bulletin_title;

public String bulletin_context;

public String bulletin_time;

public String old_title;

public Connection con;

public boolean amend_exe() throws Exception {
  try{

Statement statement=con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);
String sql="update bulletin_info set bulletin_title='"+bulletin_title+"',bulletin_context='"+bulletin_context+"',bulletin_time='"+bulletin_time+"' where bulletin_title='"+old_title+"'";

statement.executeUpdate(sql);

return true;

}catch(SQLException ee)
{
return false;
}

}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?