day10
對所寫的**管理系統的使用者管理系統進行增查改,並進行了排版調整
查public list findall() throws sqlexception
return users;
case1
list users=userdao.findall();
system.out.println(users);
增public void add(user user) throws sqlexception {
connection connection=dbutil.getconnection();
preparedstatement statement = connection.preparestatement(「insert into user (username,password)values(?,?)」);
statement.setstring(1,user.getusername());
statement.setstring(2,user.getpassword());
statement.executeupdate();
case2
system.out.println(「請輸入註冊使用者名稱:」);
string n=input.next();
system.out.println(「請輸入註冊密碼:」);
string au=input.next();
system.out.println(「請輸入註冊使用者許可權」);
int ty=input.nextint();
user user=new user();
user.setusername(n);
user.setpassword(au);
user.settype(ty);
userdao.zhuce(user.getusername(),
user.getpassword(),user.gettype());
改public void update(music music) throws sqlexception {
connection connection=dbutil.getconnection();
preparedstatement statement=connection.preparestatement(「update music set musicname=』?'where id=?」 );
statement.executeupdate();
case3
system.out.println(「請輸入需要修改的id」);
int id=input.nextint();
system.out.println(「請輸入要修改後的密碼」);
string password=input.next();
userdao.update(id,password);
break;
SQL增 查 改語句
insert into table name 列1,列2,values 值1,值2,select 列名稱 from 表名稱 update 表名稱 set 列名稱 新值 where 列名稱 某值 delete from 表名稱 where 列名稱 值 select from where order b...
檔案操作 增改查
修改檔案的兩種方式 1.第一種方法 在原檔案中修改 先開啟檔案,把檔案內容讀出來賦值給乙個變數,關閉檔案,重新開啟檔案,把檔案內容寫到檔案中 with open r f r encoding utf 8 as f data f.read print data print type data with...
MSSQL 用openrowset增改查xlsx
注意 1 首先要允許使用ace及動態引數 2 excel12.0應寫為 excel 12.0 1 查 允許在程序中使用ace.oledb.12 exec master.dbo.sp msset oledb prop n microsoft.ace.oledb.12.0 n allowinproces...