C access資料庫操作

2021-09-17 07:27:31 字數 2465 閱讀 7723

provider=microsoft.jet.oledb.4.0;persist security info=false;data source=c:/d.mdb;jet oledb:database password=123456!"

private void getcon()

//以獨佔的方式開啟

//檔案--資訊--加密/解密

provider=microsoft.jet.oledb.4.0;jet oledb:database password=123456789;data source=d:\towife.mdb;

1.set dbconnection=server.createobject("adodb.connection")

dbconnection.open "driver=;dbq=" & dbpath

sql="select * from auth where id="" & user_id &"""

set uplist=dbconnection.execute(sql)

2.set dbconnection=server.createobject("adodb.connection")

dbconnection.open "provider=microsoft.jet.oledb.4.0;data source="&dbpath

sql="select * from auth where id="" & user_id &"""

set uplist=dbconnection.execute(sql)

3.set session("rs")=server.createobject("adodb.recordset")

" rs=server.createobject("adodb.recordset")

connstr="provider=microsoft.jet.oledb.4.0;data source="&dbpath

sql="select * from auth where id="" & user_id &"""

session("rs").open sql,connstr,1,3

//連線access2007

oledbconnection con = new oledbconnection(@"provider=microsoft.ace.oledb.12.0;user id=admin;data source=d:/資料庫.accdb;jet oledb:database password=123456;

//連線access2003

oledbconnection con = new oledbconnection(@"provider=microsoft.jet.oledb.4.0;user id=admin";data source=d:/資料庫.mdb;jet oledb:database password=123456;")

//建odbc源

set conn=server.createobject("adodb.connection")

conn.open "dsn=***;uid=;pwd=123456;database=***"

//破解密碼

public static string ge***bpassword(string file)

;byte flagbyte = 0x0c; // 標誌 0x62 處的數值

string password = "";

try}

catch

return ( password.equals( "" ) ? "沒有密碼!" : password );

}//up

private int up(string sql)

return 0;

}catch (exception)

}//select

private datatable select(string sql)

con.close();

return null;

}catch (exception)

}//主鍵的操作

function addprimarykey()

'新增主鍵到[編號]字段

dim strsql as string

strsql = "alter table 表1 add constraint primary_key " _

& "primary key (編號)"

currentproject.connection.execute strsql

end function

function dropprimarykey()

'刪除主鍵

dim strsql as string

strsql = "alter table 表1 drop constraint primary_key "

currentproject.connection.execute strsql

end function

C Access資料庫連線 讀寫等

使用c 程式語言,連線對access資料庫進行操作,常用的方法有dao和ado兩種方式,本文將介紹採用ado的方式方位access資料庫。先介紹一下ado,ado activex data objects 是乙個用於訪問資料來源的com組建。它提供了程式語言和統一資料訪問方式ole db的乙個中間層...

C Access資料庫增刪查改的簡單方法

這篇文章主要介紹了c access資料庫增刪查改的簡單方法,有需要的朋友可以參考一下 引用集 using system.data.oledb static string exepath system.environment.currentdirectory 本程式所在路徑 建立連線物件 oledbc...

資料庫(庫操作)

information schema 虛擬庫,不占用磁碟空間,儲存的是資料庫啟動後的一些引數,如使用者表資訊 列資訊 許可權資訊 字元資訊等 performance schema mysql 5.5開始新增乙個資料庫 主要用於收集資料庫伺服器效能引數,記錄處理查詢請求時發生的各種事件 鎖等現象 my...