How can I get the Database's Directory(50分)

  • 主题发起人 主题发起人 sandal
  • 开始时间 开始时间
S

sandal

Unregistered / Unconfirmed
GUEST, unregistred user!
我的數據庫別名是"picture", 用什麼方法可以很快得到 "picture" 數據庫所指向的
目錄?
 
你运气真好,昨天我刚编完这个,送给你,哈哈!!
unit Unit1;

interface

uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls,db, DBTables;

type
TForm1 = class(TForm)
Button1: TButton;
ListBox1: TListBox;
Table1: TTable;
Label1: TLabel;
Label2: TLabel;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;

var
Form1: TForm1;
path :string;
implementation

{$R *.DFM}

procedure TForm1.Button1Click(Sender: TObject);
begin
session.GetAliasParams('workdir',listbox1.Items);
path:=copy(listbox1.Items[0],6,50);
label1.Caption:=path;
label2.Caption:=inttostr(length(path));
end;

end.
 
Haha...的解答使用的是操作BDE的api函数,Delphi在注册表中设置了BDE所在的目录,
并且提供了很多操作BDE的api函数,下面是几个比较常用的函数:
ModifyAlias :更改别名
AddAlias :增加别名....
具体可以查阅Delphi自带的有关BDE的api帮助!
 
多人接受答案了。
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
I
回复
0
查看
747
import
I
I
回复
0
查看
800
import
I
后退
顶部