[Lazarus] Missing some database components

William Oliveira Ferreira bdexterholland at gmail.com
Sun May 20 22:47:11 CEST 2012


I'm seeing that registersqldb.pas try to register all connectors (if it
corresponding flag is active). So, i'm seeing too that TMSSQLConnection,
TSyBaseConnection, TMySQL55Connection and TFBAdmin aren't available to drop
on my projects. How can i install them?

procedure RegisterUnitSQLdb;
begin
  RegisterComponents('SQLdb',[TSQLQuery,
                              TSQLTransaction,
                              TSQLScript,
                              TSQLConnector,
{$IFDEF HASMSSQLCONNECTION}
                              TMSSQLConnection,
{$ENDIF}
{$IFDEF HASSYBASECONNECTION}
                              TSybaseConnection,
{$ENDIF}
{$IFDEF HASPQCONNECTION}
                              TPQConnection,
{$ENDIF}
{$IFDEF HASORACLECONNECTION}
                              TOracleConnection,
{$ENDIF}
                              TODBCConnection,
{$IFDEF HASMYSQL4CONNECTION}
                              TMySQL40Connection,
                              TMySQL41Connection,
{$ENDIF}
                              TMySQL50Connection,
{$IFDEF HASMYSQL51CONNECTION}
                              TMySQL51Connection,
{$ENDIF}
{$IFDEF HASMYSQL55CONNECTION}
                              TMySQL55Connection,
{$ENDIF}
{$IFDEF HASSQLITE3CONNECTION}
                              TSQLite3Connection,
{$ENDIF}
                              TIBConnection
{$IFDEF HASFBADMIN}
                              ,TFBAdmin
{$ENDIF}
                              ]);
end;

-- 
________________________________
William de Oliveira Ferreira
Bacharel em Sistemas de Informação
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.lazarus-ide.org/pipermail/lazarus/attachments/20120520/484f64c4/attachment-0002.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: Captura_de_tela.png
Type: image/png
Size: 13657 bytes
Desc: not available
URL: <http://lists.lazarus-ide.org/pipermail/lazarus/attachments/20120520/484f64c4/attachment-0002.png>


More information about the Lazarus mailing list