config.~pas

来自「能够记录、管理小区内各楼盘的基本信息 对业主、房产资料要有记录、管理」· ~PAS 代码 · 共 18 行

~PAS
18
字号
unit config;

interface
uses
 SysUtils,forms;
type
  TXQWYConfig=class
  connectionstr:string;
  public
     class function getConnectionStr:string;
end;
implementation
class function TXQWYConfig.getConnectionStr;
begin
  result:='Provider=SQLOLEDB.1;Password=a;Persist Security Info=True;User ID=sa;Initial Catalog=XQWY;Data Source=(local)';
end;
end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?