加密你的Access數(shù)據(jù)庫(kù)asp打開(kāi)方法_Access數(shù)據(jù)庫(kù)教程
教程Tag:暫無(wú)Tag,歡迎添加,賺取U幣!
推薦:access下如何恢復(fù)已經(jīng)刪除的記錄;如何恢復(fù)已經(jīng)刪除的表、窗體等等對(duì)象access下如何恢復(fù)已經(jīng)刪除的記錄;如何恢復(fù)已經(jīng)刪除的表、窗體等等對(duì)象
Secure Your Access DatabaseHow can you keep unwanted people from downloading your database simply by typing in the url?
You can't, it is not possible. BUT you can secure it by adding a password to it. Below I will
walk you through the steps needed to accomplish this.
1. Download your database (new feature added today, see above).
2. Open it up in MS Access. (Check the "Exclusive" checkbox in the file dialog box. If you don't,
Access will ask you to later.)
3. Menu Bar --> Tools --> Security --> Set Database Password Select "Tools" from the menu bar,
then "Security", then "Set Database Password."
4. Your password can be: (quoted from MS Access Help) "Passwords can be any combination of 14 or
fewer characters, except control characters. Passwords are case-sensitive."
5. Upload your password protected database to Brinkster.
6. What needs to be changed in your code:
Only your connection string needs to be changed. Here is a sample:
Set Conn = Server.CreateObject("ADODB.Connection")
MyConnStr = "DRIVER={Microsoft Access Driver (*.mdb)}; "
MyConnStr = MyConnStr & "DBQ=d:sitesmembernamedbmydbase.mdb; "
MyConnStr = MyConnStr & "PWD=yourpassword"
Conn.Open(MyConnStr)
Add the "PWD=yourpassword" to the connection string and you are set!
7. In the SQL Mgr, a new field has been added for password. This way you can still use the SQL
Mgr, even if your Access database has been password protected!
By: Jared Stauffer
分享:恢復(fù)從 Access 2000、 Access 2002 或 Access 2003 中數(shù)據(jù)庫(kù)刪除表的方法恢復(fù)從 Access 2000、 Access 2002 或 Access 2003 中數(shù)據(jù)庫(kù)刪除表的方法
相關(guān)Access數(shù)據(jù)庫(kù)教程:
- Access數(shù)據(jù)庫(kù)安全策略之ASP式
- 第N次被ACCESS的關(guān)鍵字涮
- Access中用Jet SQL語(yǔ)句刪除表關(guān)系
- Access報(bào)表打印如何自動(dòng)分頁(yè)
- Access完成累計(jì)余額的計(jì)算
- 搭建Access為主的Mdb數(shù)據(jù)庫(kù)
- 一句sql更新兩個(gè)表并可更新對(duì)應(yīng)的字段值具體實(shí)現(xiàn)
- MySQL查詢優(yōu)化:連接查詢排序limit(join、order by、limit語(yǔ)句)介紹
- 內(nèi)網(wǎng)ssh/mysql登錄緩慢的解決方法
- 使用準(zhǔn)則進(jìn)行條件查詢--1.4.從窗體中選擇查詢的條件
- 中文Access2000速成教程--1.1 使用“向?qū)А痹O(shè)計(jì)數(shù)據(jù)庫(kù)
- 中文Access2000速成教程--1.3 在“設(shè)計(jì)”視圖中設(shè)計(jì)表
Access數(shù)據(jù)庫(kù)教程Rss訂閱編程教程搜索
Access數(shù)據(jù)庫(kù)教程推薦
- 如何設(shè)置ACCESS2003(運(yùn)行時(shí))的宏安全性級(jí)別
- 詳解如何遠(yuǎn)程調(diào)用Access數(shù)據(jù)庫(kù)
- 解析Access與Flash的結(jié)合應(yīng)用
- access 數(shù)據(jù)庫(kù)自啟動(dòng)困難解決方法
- 用Access 2000進(jìn)行班級(jí)管理
- 服務(wù)器架站應(yīng)用:打造安全mdb數(shù)據(jù)庫(kù)
- Excel和Access間復(fù)制、和導(dǎo)出數(shù)據(jù)
- Microsoft Access秘密、技巧和陷阱
- 使用Access提高企業(yè)管理器功能
- 淺談在ACCESS中LIKE的用法
猜你也喜歡看這些
- 通過(guò)查詢返回?cái)?shù)據(jù)庫(kù)對(duì)象的名稱
- Access完成累計(jì)余額的計(jì)算
- Access應(yīng)用:仔細(xì)地選擇索引
- Access日期與時(shí)間函數(shù)匯總
- Access 模糊參數(shù) 分頁(yè)查詢
- 將Access數(shù)據(jù)庫(kù)移植到SQL Server 7.0
- 淺析通用刪除某表某字段滿足條件的記錄兩個(gè)函數(shù)
- 定期歸檔Access數(shù)據(jù)庫(kù)
- Access數(shù)據(jù)庫(kù)的存儲(chǔ)上限
- 巧用in關(guān)鍵字實(shí)現(xiàn)數(shù)據(jù)的批量刪除
- 相關(guān)鏈接:
- 教程說(shuō)明:
Access數(shù)據(jù)庫(kù)教程-加密你的Access數(shù)據(jù)庫(kù)asp打開(kāi)方法
。