Difference between revisions of "Oracle"

From Lazarus wiki
Jump to navigationJump to search
(New page: == Introduction to Oracle server interface == The oracle server interface exists of one unit, '''oraoci''', which is a straight translation of the oracle interface header files. There a...)
 
(Link to sqldb oracle)
Line 7: Line 7:
 
* '''test01''' a simple test program to demonstrate the interface.  
 
* '''test01''' a simple test program to demonstrate the interface.  
  
Go to back [[Package_List|Packages List]]
+
== OOP access to Oracle ==
 +
The SQLDB framework supplied with FPC supports accessing Oracle (using TOracleConnection); see [[Databases]]
 +
 
 +
Go back to [[Package_List|Packages List]]
 +
[[Category:FPC]]

Revision as of 14:04, 20 September 2012

Introduction to Oracle server interface

The oracle server interface exists of one unit, oraoci, which is a straight translation of the oracle interface header files.

There are 2 example programs:

  • oraclew contains some utility routines for the oracle interface, for easier management of result sets. Needs the classes unit from the FCL.
  • test01 a simple test program to demonstrate the interface.

OOP access to Oracle

The SQLDB framework supplied with FPC supports accessing Oracle (using TOracleConnection); see Databases

Go back to Packages List