3)放置一個TClIEntDataSet控件(在Data Access頁)
屬性:
Name=cdsCustomer(重新起名)
RemoteServer= DCOMConnrction1
ProviderName:=DataSetProvider1(服務器端將被激活)
Active=true (激活後將能正常連接)
4)放置TDataSource,屬性:
Dataset:指向cdsCustomer。
其余猶如普通的數據庫設計。我們也可以練習一下TActionList控件的使用, 先做一個小練習:先用普通的方法連上數據庫,並用表格顯示:
放一個Toolbar加入四個按鈕。然後把Standard--àActionList加入進去。
在ActionList上右鍵,選:Action List Editor
多層數據庫中的一個例子在“客戶端-2”中。其中寫入和退出在Standard Action 內找不到,需要自己編,在ToolBar1內再加入兩個Button,寫:
procedure TForm1.ApplyUpdateExecute(Sender: TObject);
begin
cdsCustomer.ApplyUpdates(-1);
ShowMessage('已經正確地寫入數據庫中!!');
end;
procedure TForm1.CloseActionExecute(Sender: TObject);
begin
Close;
end;
下面裝飾這個Button組,調入一個ImageList1,調入相應的圖形:
ToolBar1的屬性Image=ImageList1
ShowHint=true
把每個Button的Hint的屬性放入適當的值。只要服務器端正確的注冊,這個 程序使用是沒有問題的。