本文作者:icy

Delphi-uniGUI pro 1.90.0.1555 and SOURCES

icy 2021-11-12 1867 1条评论
Delphi-uniGUI pro 1.90.0.1555 and SOURCES摘要: UniGUI pro 1.90.0.1555支持 Delphi-xe ~ Delphi-11Universal  Data Access Components(UniDA...

UniGUI pro 1.90.0.1555

支持 Delphi-xe ~ Delphi-11


Universal  Data Access Components(UniDAC)是一个组件库,

它提供了从Delphi和C++Builder(包括Community   Edition)直接访问多个数据库的功能,

以及在Windows、Linux、macOS、iOS和Android上针对32位和64位平台访问Lazarus(和免费Pascal)的功能。

//实现代码procedure TForm1.FormCreate(Sender: TObject);
begin
    UniQuery1.Connection := UniConnection1;
    UniDataSource1.DataSet := UniQuery1;
    DBGrid1.DataSource := UniDataSource1;
    with UniConnection1 do        begin
            ProviderName := 'MySQL';
            Username := 'root';
            Password := '123';
            Server := '192.168.82.201';
            Database := 'world';
            Port := 3306;
            SpecificOptions.Values['UseUnicode'] := 'True';
            try            Connect;
            UniQuery1.Close;
            UniQuery1.SQL.Text := 'select * from city';
            UniQuery1.Open;
        except
          ;
        end;
    end;
end;


uniGUI pro 1.90.0.1555 SOURCES
类型:压缩文件|已下载:383|下载方式:免费下载
立即下载

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏

阅读
分享

发表评论

快捷回复:

评论列表 (有 1 条评论,1867人围观)参与讨论
网友昵称:访客
访客 游客 沙发
01-18 回复
说明跟下载内容不一致[Facepalm]