用DELPHI壓縮ACCESS資料庫
procedure CompactMdbDatabase(srcDbname,dstDbname,oldpwd,newpwd:string;bAccess97:boolean=true);
var idbEngine:_dbEngine;
begin
if oldpwd <>'' then oldpwd := ';pwd='+oldpwd;
if newpwd <>'' then newpwd := ';pwd='+newpwd;
if bAccess97 then
begin
idbengine := CreateComObject(dao97.CLASS_DBEngine) as _DBEngine;
idbEngine.CompactDatabase(srcDbname,dstDbname,newpwd,dbVersion30,oldpwd);
end else
begin
idbengine := CreateComObject(dao2000.CLASS_DBEngine) as _DBEngine;
idbEngine.CompactDatabase(srcDbname,dstDbname,newpwd,dbVersion40,oldpwd);
end;
end;
相關推薦
用DELPHI壓縮ACCESS資料庫
procedure CompactMdbDatabase(srcDbname,dstDbname,oldpwd,newpwd:string;bAccess97:boolean=true); var idbEngine:_dbEngine; begin if oldpwd <>'' the
一次Delphi訪問access資料庫的總結
由於專案需要寫一個門禁介面,要使用Delphi訪問access資料庫的一個表,不得已要使用以前都沒用過的access資料庫,現在介面寫的差不多了,把自己在這當中學到的一些access記一下,以免到時候遺忘。 1、首先要明確access是一個檔案型資料庫,訪問時不需要ip地址
用asp查詢Access資料庫的程式碼
下邊是ASP與ACCESS的連線程式碼~ =============================================================== ASP與Access資料庫連線: <%@ language=VBs cript%> <% dim conn,mdbfile
解決用navicate遠端連線資料庫出現1045 access denied for user 'root'@'localhost' using password yes
在mysql命令列中執行 SET PASSWORD FOR 'root'@'localhost' = PASSWORD('123456XXX'); GRANT ALL PRIVILEGES
java使用Access資料庫中萬用字元的一些坑
java使用Access資料庫中萬用字元的一些坑 在使用access資料庫寫一個條件為like的語句: select mess_id ,mess_name,mess_note,mess_txt from messtable where 1=1 and mess_name like ‘*
access資料庫用SQL語句
一, 有個表student,兩個欄位Sname和Age,values 一次搞一條,想搞多條用select ...union select...結果集; 單條插入INSERT INTO student (Sname,Age) 
delphi 如何實現在MS Access資料庫中影象的儲存和顯示
一、原理介紹--流式資料的型別及其應用 在Dephi中提供了TStream來支援對流式資料的操作。TStream是萬流之源。 但由於它是一個抽象類,故不能被直接使用;而要使用其相應的子類, 如:TFileStream 、TStringStream、TMemoryStream
用OTL庫連線讀取access資料庫
一.環境及建立一個數據庫 程式設計環境:VS2010 資料庫:access2007 OTL庫載地址:http://otl.sourceforge.net/home.htm 使用access2007建立
用ADO常用的連線方式和訪問加密的ACCESS資料庫
在stdafx.h中新增一句指令: #import "c:\program files\common files\system\ado\msado15.dll" \ no_namespace \ rename ("EOF", "adoEOF") COM庫的初始化在CWi
DELPHI分別連線MS SQLSERVER、Oracle和ACCESS資料庫的連線字串(備用)
1、DELPHI連線MS SQLSERVER資料庫 ADOConn_ToolDB.Close; ADOConn_ToolDB.ConnectionString:='Provider=SQLOLEDB.1;'+
Delphi 7中ADO控制元件開啟Access資料庫檔案
最近在學習delphi 7程式設計,儘管已經這門語言已經落寞了,但是作為新手,我目前覺得delphi難度比其他的小,可能與視覺化環境有關,尤其很多控制元件拖拖拖就可以了。以下理解可能有很多錯誤,希望高手指正,謝謝啦。 介面如下: 新增相關控制元件:
Delphi用ini檔案連線資料庫
CS資料庫連線-delphi+inichinayaosir{delphi connection database with ini file}unit DataModule;interfaceuses SysUtils, Classes, DB, ADODB,INIFile
FastReport調用Delphi中的自定義函數
int 加載 自定義函數 調用 create phi tro fast creat //定義一個函數; function SmallToMoney(akey: real): string; begin //‘1234500‘ end; //此處為fastreport
登錄窗口不是系統主窗口 但又需要最先顯示 用delphi怎麽編寫代
edit nat show form sender ati for 需要 result 主窗體FormShow事件(主窗體為Form1為例,Form2為登陸窗體) procedure TForm1.FormShow(Sender: TObject); begin
Qt用Zip壓縮文件夾的一些坑
win urn rect argument clear home nts down min 環境: QT3.3.8 vs2005 QDir dir("/home/Blinux/html"); if ( !dir.exists() ) { //目錄
FastReport調用Delphi中的自定義函數(人民幣大寫金額)mtm
分享圖片 人民幣 IT report text 定義 eat fas func 1. 在 FormCreate 中向FastReprot添加函數 (fPrint)窗口 procedure TfPrint.FormCreate(Sender: TObject); fr
Intel Fortran 調用Delphi編制的DLL
ins oca imp read endif ram cee fortran fail module link_cont interface subroutine I_FileOpenCont (ncase,ndata,lpool,xfiles)
C# 讀取Access資料庫及php讀取伺服器上的Access資料庫
Access資料庫他是不能遠端訪問的,也就是說實際上它是單機的一個數據庫,那麼如果非要遠端訪問它那麼就需要php作為中間語言去操作Access資料庫。 我想現實使用C#在本地訪問Access資料庫。要想訪問Access資料庫,我們首先得自己建立一個數據庫檔案:在開始選單中找到 Microso
nodejs連線Access資料庫,出現Error: Spawn C:\WINDOWS\SysWOW64\cscript.exe error Java專案生成可執行jar包、exe檔案以及在Windows下的安裝檔案
因為集成了第三方的資料庫,所以需要獲取資料庫的資料 使用 var connection = ADODB.open('Provider=Microsoft.Jet.OLEDB.4.0;Data Source='+config.id_path+';');  
連線Access資料庫的連線字串
來自森大科技官方部落格 http://www.cnsendblog.com/index.php/?p=92連線Access資料庫的連線字串 把資料庫檔案放在App_Data資料夾中,Web.Config檔案中的連線字串如下所示:<connectionStrings><add name