lazarus/examples/database/sqldbtutorial3/sqldbtutorial3.lpr
maxim 87f1227012 Examles: added SQLdb tutorial from Reinier Olislagers, bug #23389. It shows:
- how to program for multiple DBs
   - use of DB login form
   - how to programmatically load and save from/to databases

git-svn-id: trunk@39395 -
2012-11-27 22:34:52 +00:00

27 lines
569 B
ObjectPascal

program sqldbtutorial3;
{
This is the accompanying project for
http://wiki.lazarus.freepascal.org/SQLdb_Tutorial3
Please see that article for instructions and requirements.
(You'll need database clients and a sample database; see the article)
}
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, mainform, dbconfiggui;
{$R *.res}
begin
RequireDerivedFormResource := True;
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.