1 Star 0 Fork 58

于芷萱/040125_ yuzhixuan_electronicbook

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Update.java 1.75 KB
一键复制 编辑 原始数据 按行查看 历史
package electronicbook;
import javax.swing.*;
import java.sql.*;
public class Update extends JFrame{
String tableName;
JTextField field[]=null;
String a[]=null;
public void setTableName(String s){
tableName=s.trim();
}
public void setField(JTextField s[]){
field=s;
}
public void setA(String e[]){
a=e;
}
public Update(){
}
public void Execute_Update(int mark){
String SQL[]=new String [a.length];
Connection con;
Statement sql;
for(int i=0;i<a.length;i++)
{
if(i!=mark)
SQL[i]="update "+"书籍详情"+" set "+a[i]+" ='"+field[i].getText().toString()+"' where "+a[mark]+" ='"+field[mark].getText().toString()+"'";
}
try{
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
}
catch(ClassNotFoundException exp){
System.out.println(exp);
}
try{
String url,userName,userPwd;
url="jdbc:sqlserver://localhost:1433;DatabaseName=电子书订阅";
userName="sa";
userPwd="123456";
con=DriverManager.getConnection(url,userName,userPwd);
sql=con.createStatement();
for(int i=0;i<field.length;i++)
if(i!=mark&&field[i].getText().toString().equals("")==false)
sql.executeUpdate(SQL[i]);
con.close();
for(int i=0;i<field.length;i++)
field[i].setText(null);
}
catch(SQLException ex){
System.out.println(ex);
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yuzhixuan040125/java-xg34.git
git@gitee.com:yuzhixuan040125/java-xg34.git
yuzhixuan040125
java-xg34
040125_ yuzhixuan_electronicbook
master

搜索帮助