Database
soci.txt
Associated article: A Simple Oracle Call Interface
Tags: C/C++ Database
Published source code accompanying the article by Maciej Sobczak in which he presents a database library lets you "embed" SQL code within C++ applications. Also see SOCI.ZIP.
A Simple Oracle Call Interface by Maciej Sobczak Example 1: (a) cout << i; (b) int count; sql << "select count(*) from person", into(count); (c) int id = 7; string name = "John"; sql << "...


