You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6119 8e941d3f-bd1b-0410-a28a-d453659cc2b4
43 lines
973 B
ObjectPascal
43 lines
973 B
ObjectPascal
{**********************************************************************
|
|
PilotLogic Software House.
|
|
|
|
Package pl_ZMSQL.pkg
|
|
This unit is part of CodeTyphon Studio (http://www.pilotlogic.com/)
|
|
***********************************************************************}
|
|
|
|
unit AllzmsqlRegister;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
{$IFDEF UNIX} clocale, cwstring,{$ENDIF}
|
|
Classes,SysUtils,TypInfo,lresources,PropEdits,ComponentEditors,
|
|
ZMConnection,
|
|
ZMQueryDataSet,
|
|
ZMReferentialKey,
|
|
ZMQueryBuilder,
|
|
DB;
|
|
|
|
|
|
procedure Register;
|
|
|
|
implementation
|
|
|
|
{$R AllzmsqlRegister.res}
|
|
|
|
//==========================================================
|
|
procedure Register;
|
|
begin
|
|
RegisterComponents ('ZMSql',[
|
|
TZMConnection,
|
|
TZMReferentialKey,
|
|
TZMQueryDataSet,
|
|
TZMQueryBuilder
|
|
]);
|
|
|
|
end;
|
|
|
|
end.
|