Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
lazarus-project / usr / share / lazarus / 2.0.10 / components / sqlite / registersqlite3.pas
Size: Mime:
{
 *****************************************************************************
  See the file COPYING.modifiedLGPL.txt, included in this distribution,
  for details about the license.
 *****************************************************************************
}
unit registersqlite3;

{$Mode ObjFpc}
{$H+}

interface

uses 
  Classes, SysUtils, LResources, LazarusPackageIntf, PropEdits,
  ComponentEditors, sqlite3ds, SqliteComponentEditor;
  
procedure Register;

implementation

{$R sqlite3icon.res}

procedure RegisterUnitSqlite3ds;
begin
  RegisterComponents('Data Access',[TSqlite3Dataset]);
end;  

procedure Register;

begin
  RegisterUnit('sqlite3ds',@RegisterUnitSqlite3ds);
  RegisterComponentEditor(TSqlite3Dataset,TSqliteEditor) ;
  RegisterPropertyEditor(TypeInfo(String),TSqlite3Dataset,'FileName',
                         TFileNamePropertyEditor);
end; 

end.