Hello,

perhaps you know: At the moment I am developing a CGI framework 
with C++. Now I have implemented a sqlite class. You can do 
something like this:

##########################################
 F::FSqlite sql;

 sql.sqliteConnect( "testdb" );
 sql.sqliteQuery( "SELECT * FROM table" );

 while( mySqlObject.dataSetIsLeft( ) ) {
  cout << mySqlObject.result[ "col_1" ]
  cout << mySqlObject.result[ "col_2" ]
 }
##########################################

I think this is a very simple database handling. There are also 
many other classes like:

The FFile class for the filehandling.
The FCookie class for the cookiehandling.
The FApplication class for parsing the query string and for some 
string functions.
The FSearch class for searching the own homepage.

If you are interested - especially in featuring the sqlite class 
together with mine let me know.

Greets Christian
-- 
Linux is like a wigwam - no gates, no windows and an apache 
inside.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to