資料庫刪除代碼
簡單實現代碼如下:
EmployeeDao.java
//刪除數據
public boolean deleteEmployeeById(int id){
boolean result = false;
try{
con = DBCon.getConn();
String sql = "delete from tb_employee where id=?";
pstmt = (PreparedStatement) con.prepareStatement(sql);
pstmt.setInt(1, id);
int i = pstmt.executeUpdate();
if(i == 1)
result = true;
}catch(Exception e){
e.printStackTrace();
}finally{
try{
if(pstmt != null){
pstmt.close();
}
}catch(Exception e){
e.printStackTrace();
}
try{
if(con != null){
con.close();
}
}catch(Exception e){
e.printStackTrace();
}
}
return result;
}
TestSql2.java
package com.sql.test;
import com.sql..EmployeeDao;
public class TestSql02 {
public static void main(String[] args){
boolean result = EmployeeDao.getInstance().deleteEmployeeById(1);
if(result == true){
System.out.println("刪除成功!");
}else{
System.out.println("刪除失敗!");
}
}
}
⑵ 網站程序刪除資料庫代碼問題
這個沒有關系.用你的語句了是可以的.因為執行語句時只是判斷傳遞的值是否符合或相等, sql="delete from pl where username="&username這樣也可以刪除,只要條件符合....
如果要拿數據來做比較,則要數據類型對數據類型才行了...
你這個語句就可以了的.
⑶ sql2000里批量刪除資料庫里的一條代碼
在sysobjects表裡面,查到你所有的用戶表,用游標一個一個查到表的名字,用動態sql(參數),循環刪除你要刪的惡意代碼
⑷ 資料庫刪除代碼
什麼資料庫 delete * from 表名
⑸ jsp刪除代碼 (有一個刪除連接,如何刪除資料庫的內容,通過ID刪除)
StringID=request.getparameter("ID");
Connectionconn=null;
preparedmenterpstmt=null;
Stringsql="";
intcount=0;
try{
conn.getConnPool();\連接池,自己網上找就行
sql="deletefromwhereid=?"
conn.parperementer(sql);
pstmt.setString(ID);
count=pstmt.executeUpdate();
if(count>=1)
out.println("刪除成功");}catch(EXceptione)
{out.println("刪除失敗");}
finally{釋放資源,這你肯定會}
⑹ 我想勾選一個,然後點刪除 實現資料庫里的刪除,該添加哪些代碼
刪除數據的點擊事件中{
遍歷這些checkbox,取得選中的checkbox對應的ID
再使用SQL語句進行刪除(delete from xxx where ID in (選中的ID值))
就好了
}
⑺ abap中如何刪除資料庫表中的數據,程序刪除代碼怎麼寫
如果不是自己建立的資料庫表,還是最好別delete!你刪除一個資料庫表中的數據,會造成其他資料庫表的數據無效的!
delete db from table it_tab。
⑻ 刪除資料庫源代碼會怎麼樣
如果不是自己建立的資料庫表,還是最好別delete!你刪除一個資料庫表中的數據,會造成其他資料庫表的數據無效的!
⑼ 求使用sql語句創建和刪除資料庫的代碼
1、使用create
database創建資料庫test
create
database
test
on
primary
(
name
=
'test',
filename='c:\program
files\microsoft
sql
server\mssql\data\test.mdf',
size=10240kb,
maxsize
=
unlimited,
filegrowth
=
10%)
log
on
(
name='test_log',
filename='c:\program
files\microsoft
sql
server\mssql\data\test_log.ldf',
size=1024kb,
maxsize
=
5120kb,
filegrowth
=
1024kb
)
go
2.
使用alter
database語句修改資料庫
例4-3將兩個數據文件和一個事務日誌文件添加到test資料庫中。
程序清單如下:
alter
database
test
add
file
(name
=
test1,
filename='c:\program
files\microsoft
sql
server\mssql\data\test1.ndf',
size
=
5mb,
maxsize
=
100mb,
filegrowth
=
5mb),
(name
=
test2,
filename='c:\program
files\microsoft
sql
server\mssql\data\test2.ndf',
size
=
3mb,
maxsize
=
10mb,
filegrowth
=
1mb)
go
alter
database
test
add
log
file
(
name
=
testlog1,
filename='c:\program
files\microsoft
sql
server\mssql\data\testlog1.ldf',
size
=
5mb,
maxsize
=
100mb,
filegrowth
=
5mb)
go
3、重命名test為demo
sp_renamedb
'test','demo'
4、刪除資料庫
drop
database
demo
⑽ 資料庫中用代碼刪除資料庫
exists 是SQL中判斷對象是否存在的關鍵字,一般在修改或刪除對象時都會用它來判斷以免發生錯誤。
exists後面即是普通的select查詢語句,如果select語句影響記錄不為0,即函數@@rowcount的值不為0,即被判斷對象存在。詳細可參見T-SQL語言幫助。