Difference between revisions of "odbc"

From Free Pascal wiki
Jump to navigationJump to search
(New page: == ODBC : Universal database access. == This package contains one unit '''odbcsql''' which contains the header file translations of the ODBC system. It works on the windows ODBC implementa...)
 
Line 5: Line 5:
  
 
The FCL contains a unit fpodbc which contains an OOP wrapper around the ODBC calls, which makes ODBC programming considerably easier and more pascal-like.  
 
The FCL contains a unit fpodbc which contains an OOP wrapper around the ODBC calls, which makes ODBC programming considerably easier and more pascal-like.  
 +
 +
Also, there is an [[ODBCCON|SQLDB ODBC driver]] so you can use recordsets, visual database components in Lazarus, etc.
  
 
Go to back [[Package_List|Packages List]]
 
Go to back [[Package_List|Packages List]]

Revision as of 11:42, 29 June 2012

ODBC : Universal database access.

This package contains one unit odbcsql which contains the header file translations of the ODBC system. It works on the windows ODBC implementation and works with UnixODBC as well - it was tested on both.

The test program testodbc accesses a MS-Access database and runs a query on it.

The FCL contains a unit fpodbc which contains an OOP wrapper around the ODBC calls, which makes ODBC programming considerably easier and more pascal-like.

Also, there is an SQLDB ODBC driver so you can use recordsets, visual database components in Lazarus, etc.

Go to back Packages List