物料管理 物料登记 批量登记:一次性导入多条物料 单条登记:只能录入一条物料信息 物料管理 更新: 删除: 查看: 物料导出 库管员可以将系统中登记的所有物料一次性导出来 Mat

源代码在线查看: delete.java

软件大小: 4506 K
上传用户: ilovexzhu
关键词: Mat 物料管理 更新 删除
下载地址: 免注册下载 普通下载 VIP

相关代码

				import java.io.IOException;
				import java.sql.SQLException;
				
				import com.mysql.jdbc.Connection;
				import com.mysql.jdbc.Statement;
				import com.qrsx.storage.manager.DBConnection;
				public class Delete {
				
					/**
					 * @param args
					 * @throws IOException 
					 * @throws SQLException 
					 */
					public static void main(String[] args) throws SQLException {
						Connection conn=null;
						try{
						 conn=(Connection) DBConnection.getConnection();
						Statement stat=(Statement) conn.createStatement();
						String sql="insert into storage values (6,'nihao','sd','ew',5,6,'sfs')";
						stat.executeUpdate(sql);
						}catch(IOException e){
							e.printStackTrace();
						}finally{
							if(conn!=null){
								try{
									conn.close();
								}catch(Exception e){
									e.printStackTrace();
								}
							}
						}
					}
				
				}
							

相关资源