在Delphi.net中,VCL.Net有兩點蠻遺憾的:
1.不能使用ADO(dbGo),不過據李維說本月的Delphi8.1將會有這個組件。
2.不能使用ADO.Net和BDP,這將是我這片文章的主題。
在Borland的delphi交流區內,曾經看到Danny說過,"在Delphi.net中VCL.net可以調用Winform組件,同樣Winform也可以調用VCL.Net組件"。
為了驗證第一句話,我試了下,在Vcl.net中是可以使用 .Net的組件的,如可以直接uses System.Data.SqlClIEnt,並直接使用 SqlConnection類。也就是說,雖然VCL.net的組件面板中無法看到.net組件,但是所有的.net組件的類,VCl.net都可以使用! 但是,Ado.net的dataset並不和VCl.net的Dataset組件兼容,所以無法直接調用數據感知組件。不過,看了李維的Inside Vcl知道原來有一個ADONETConnector組件,用了這個組件,可以使Ado.Net支持使用數據感知組件了。
首先,VCL.net組件的dll在BDS2.0Bin 下有一個Borland.Vcl.Design.AdoNet.dll,單擊Install .net component菜單,然後在窗體的.Net vcl components頁中把這個dll Add一下,就可以看見ADONETConnector組件。然後加一個Dbgrid,db....,datasoure....,只要datasource.dataset:=ADONETConnector1。其它的和原來的Delphi一樣,就可以了。我的具體代碼如下,
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs,
System.Data.SqlClIEnt,
System.Data, System.ComponentModel, Borland.Vcl.StdCtrls,
Borland.Vcl.ExtCtrls, Borland.Vcl.DBCtrls, Borland.Vcl.Grids,
Borland.Vcl.DBGrids, Borland.Vcl.Db, Borland.Vcl.ADONETDb;
type
TForm1 = class(TForm)
Button1: TButton;
ADONETConnector1: TADONETConnector;
DataSource1: TDataSource;
DBGrid1: TDBGrid;
DBNavigator1: TDBNavigator;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
Connection:SqlConnection;
ProDataSet : DataSet;
Adapter : SqlDataAdapter;
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.nfm}
procedure TForm1.Button1Click(Sender: TObject);
begin
Connection := SqlConnection.Create(
'data source= 192.168.76.170;'+
'initial catalog=SfIEcErp;'+
'passWord=qwert;'+
'persist security info=True;'+
'user id=sa;'+
'packet size=4096;'+
'Connection Lifetime=0;'+
'Connection Reset=False;'+
'Pooling=False;'+
'Max Pool Size=100;Min Pool Size=0');
Connection.Open;
ProDataSet := DataSet.Create;
Adapter := SqlDataAdapter.Create('select * from TProduct', Connection);
Adapter.Fill(ProDataSet, 'Product');
ADONETConnector1.DataTable:=ProDataSet.Tables[0];
end;
end.
在Delphi.net中,VCL.Net有兩點蠻遺憾的:
1.不能使用ADO(dbGo),不過據李維說本月的Delphi8.1將會有這個組件。
2.不能使用ADO.Net和BDP,這將是我這片文章的主題。
在Borland的delphi交流區內,曾經看到Danny說過,"在Delphi.net中VCL.net可以調用Winform組件,同樣Winform也可以調用VCL.Net組件"。
為了驗證第一句話,我試了下,在Vcl.net中是可以使用 .Net的組件的,如可以直接uses System.Data.SqlClIEnt,並直接使用 SqlConnection類。也就是說,雖然VCL.net的組件面板中無法看到.net組件,但是所有的.net組件的類,VCl.net都可以使用! 但是,Ado.net的dataset並不和VCl.net的Dataset組件兼容,所以無法直接調用數據感知組件。不過,看了李維的Inside Vcl知道原來有一個ADONETConnector組件,用了這個組件,可以使Ado.Net支持使用數據感知組件了。
首先,VCL.net組件的dll在BDS2.0Bin 下有一個Borland.Vcl.Design.AdoNet.dll,單擊Install .net component菜單,然後在窗體的.Net vcl components頁中把這個dll Add一下,就可以看見ADONETConnector組件。然後加一個Dbgrid,db....,datasoure....,只要datasource.dataset:=ADONETConnector1。其它的和原來的Delphi一樣,就可以了。我的具體代碼如下,
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs,
System.Data.SqlClIEnt,
System.Data, System.ComponentModel, Borland.Vcl.StdCtrls,
Borland.Vcl.ExtCtrls, Borland.Vcl.DBCtrls, Borland.Vcl.Grids,
Borland.Vcl.DBGrids, Borland.Vcl.Db, Borland.Vcl.ADONETDb;
type
TForm1 = class(TForm)
Button1: TButton;
ADONETConnector1: TADONETConnector;
DataSource1: TDataSource;
DBGrid1: TDBGrid;
DBNavigator1: TDBNavigator;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
Connection:SqlConnection;
ProDataSet : DataSet;
Adapter : SqlDataAdapter;
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.nfm}
procedure TForm1.Button1Click(Sender: TObject);
begin
Connection := SqlConnection.Create(
'data source= 192.168.76.170;'+
'initial catalog=SfIEcErp;'+
'passWord=qwert;'+
'persist security info=True;'+
'user id=sa;'+
'packet size=4096;'+
'Connection Lifetime=0;'+
'Connection Reset=False;'+
'Pooling=False;'+
'Max Pool Size=100;Min Pool Size=0');
Connection.Open;
ProDataSet := DataSet.Create;
Adapter := SqlDataAdapter.Create('select * from TProduct', Connection);
Adapter.Fill(ProDataSet, 'Product');
ADONETConnector1.DataTable:=ProDataSet.Tables[0];
end;
end.