Difference between revisions of "TSQLDBLibraryLoader"

From Free Pascal wiki
Jump to navigationJump to search
m
Line 17: Line 17:
  
 
== Work in progress ==
 
== Work in progress ==
'''This article is still a rough draft; please compare with the official announcement by Michael Van Cannety on the FreePascal mailing list and update this page.'''
+
'''This article is still a rough draft; please compare with the official announcement by Michael Van Canneyt on the FreePascal mailing list and update this page.'''
  
 
[[Category:Databases]]
 
[[Category:Databases]]
 
[[Category:FPC]]
 
[[Category:FPC]]
 
[[Category:Lazarus]]
 
[[Category:Lazarus]]

Revision as of 14:07, 18 November 2013

TSQLDBLibraryLoader is a Lazarus and FPC component that specifies the names and locations of SQLDB database libraries (DLLs/.sos/.dylibs) should be loaded from where.

Use and alternatives

Recent (end of 2012) FPC versions try to load some default library names, but may fail. Using SQLDBLibraryLoader, you can specify the exact filename to load.

SQLDBLibraryLoader needs to be called before loading/enabling TSQLConnection components.

Note that often you can a similar thing by setting the library name for the TSQLConnection descendant you are using.

Sample code

  SQLDBLibraryLoader1.LibraryName := 'c:\path_to_sqllite_library\sqlite3.dll';
  SQLDBLibraryLoader1.ConnectionType:='SQLite3';
  SQLDBLibraryLoader1.Enabled := true; 
  SQLDBLibraryLoader1.LoadLibrary;

Work in progress

This article is still a rough draft; please compare with the official announcement by Michael Van Canneyt on the FreePascal mailing list and update this page.