Click here to Skip to main content
Licence BSD
First Posted 31 Jul 2004
Views 105,622
Bookmarked 70 times

Another Embedded Database For C++

By | 13 Jan 2007 | Article
A C++ wrapper to SQLite database
 
Part of The SQL Zone sponsored by
See Also

Introduction

Here is another wrapper for the famous SQLite database engine. Yes, I know about CppSQLite. It is an excellent wrapper for SQLite. I do not claim my code is superior to CppSQLite in some way. But if you already know the JDBC API, then you will find my library really easy and straightforward to use.

Using the code

Let us jump right into some example snippets that will help you start using the classes right away. To create or open a database, use the Connection class' open() function.

Connection conn;
conn.open("mydb"); // the argument is the database name.

To execute SQL commands, get a handle to the Statement object. Call the execute() function to execute all SQL commands except SELECT. The execute() function will return the number of rows affected by the query.

Statement* stmt = conn.createStatement();
stmt->execute("create table albums(title,artist)"); // creates a table
stmt->execute(
 "insert into albums values('Brothers in Arms','Dire Straits')");
    // insert some data
stmt->execute("insert into albums values('Unplugged','Eric Clapton')");

To execute a SELECT statement, use the executeQuery() function. This function returns a handle to a ResultSet. use the next() function to navigate through the ResultSet. The ResultSet class has a number of getXXX() functions that take the number of the column as it's argument and return that column's value as the specified type. The different getXXX() functions are:

  • std::string getString(int colNum)
  • int getInt(int colNum)
  • long getLong(int colNum)
  • unsigned int getUInt(int colNum)
  • unsigned long getULong(int colNum)
  • float getFloat(int colNum)
  • double getDouble(int colNum)
  • bool getBoolean(int colNum)

The ResultSet has an object of ResultSetMetaData embedded with in it. We can get a handle to this object with a call to getMetaData(). The ResultSetMetaData contains information like the number of columns in the ResultSet, their names and data types.

ResultSet* rslt = stmt->executeQuery("select * from albums");
ResultSetMetaData* r_mtdt = rslt->getMetaData();
int cols = r_mtdt->getColumnCount();
while(rslt->next()) {
  for(int i=0;i<cols;i++) {
    printf("%s (%s): %s  ",r_mtdt->getColumnName(i+1).c_str(),
    r_mtdt->getColumnType(i+1).c_str(),rslt->getString(i+1).c_str());
  }
  printf("\n");
}

The DatabaseMetaData class contains the meta data of the entire database. We can obtain a DatabaseMetaData handle by calling the getDatabaseMetaData() function of the Connection class.

Call the refreshMetaData() function first, if you want the latest database meta data.

conn.refreshMetaData();
if(conn.getDatabaseMetaData()->doesObjectExist("albums","table")) 
    // check to see if a table exists
  stmt->execute("drop table albums");// delete it if it exists

The DatabaseMetaData contains the following information:

  • Number of objects in the database.
  • Name of each object
  • Type of each object (table,index)

We can use the doesObjectExist() function to check if an object exists in the database. The first argument of this function is the name of the object and the second argument is it's type. This can be either "table" or "index".

Points of Interest

  1. To use this library, include the header file dsqlxprez_2.h and link your project with sqlite3.lib
  2. Always enclose database calls in a try - catch block that catches a SQLException
  3. All the classes in the library falls in a namespace called dsqlxprez. (DSQL stands for DarkSide SQL. Just a name, that's' it !!)
  4. You do not have to call the close() function on the Connection object explicitly. All resources are automatically deleted by the library when the Connection object's destructor is executed.

History

  • Created July 26, 2004.
  • Updated downloads Jan 14, 2007

License

This article, along with any associated source code and files, is licensed under The BSD License

About the Author

AnOldGreenHorn



India India

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralThank you ! PinmemberMemocs16:46 24 Jun '07  
QuestionSQLITE3.DLL Pinmemberusf_azi8:03 9 Feb '07  
GeneralI prefer Rob Groves version... PinmemberAaron Planell21:40 16 Jan '07  
GeneralRe: I prefer Rob Groves version... Pinmembershiftedbitmonkey13:43 5 Jan '09  
GeneralSlow insert fast select PinmemberGVR19794:03 12 Jan '07  
GeneralRe: Slow insert fast select Pinmemberislobodan8:54 14 Jan '07  
Generallast_insert_rowid PinmemberGVR19796:55 10 Jan '07  
GeneralRe: last_insert_rowid PinmemberVijay Mathew Pandyalakal0:41 11 Jan '07  
GeneralRe: last_insert_rowid PinmemberGVR19794:54 12 Jan '07  
GeneralRe: last_insert_rowid PinmemberVijay Mathew Pandyalakal16:57 15 Jan '07  
Generalsqlite3.dll and sqlite3.lib for vc++ 6.0 PinmemberThai Duong Nguyen17:54 3 Jan '07  
GeneralRe: sqlite3.dll and sqlite3.lib for vc++ 6.0 PinmemberVijay Mathew Pandyalakal17:18 4 Jan '07  
GeneralRe: sqlite3.dll and sqlite3.lib for vc++ 6.0 PinmemberAaron Planell21:43 16 Jan '07  
Generalwww.sqlite.org, Please PinsitebuilderUwe Keim21:58 2 Jan '07  
GeneralRe: www.sqlite.org, Please PinmemberVijay Mathew Pandyalakal17:19 3 Jan '07  
QuestionWhat has changed ... PinmemberHans Dietrich18:29 2 Jan '07  
AnswerRe: What has changed ... PinmemberVijay Mathew Pandyalakal17:13 3 Jan '07  
GeneralMemory Leak Pinmemberjbay10118:52 30 Dec '06  
GeneralRe: Memory Leak PinmemberVijay Mathew Pandyalakal19:33 1 Jan '07  
Thanks for that bug report.
I have submitted a fix, and it will be available for download within a few days.
I have also made some changes to make the code conform with the standard.
For example, all instances of strcmpi has been replaced with a portable function call.
I have tested the changes with the gnu compiler on a linux box.
Right now, I don't have access to a Windows machine.
So please try to spare some time to test the code on Windows.
 
It is nice to know that others are using your code and they like what you have done. It is also sobering!!!
Generalwindows mobile PinmemberGVR197911:08 29 Nov '06  
GeneralRe: windows mobile PinmemberVijay Mathew Pandyalakal16:53 29 Nov '06  
GeneralRe: windows mobile PinmemberGVR19793:43 30 Nov '06  
GeneralRe: windows mobile PinmemberVijay Mathew Pandyalakal17:11 30 Nov '06  
QuestionLicense? PinmemberSceptic Mole10:42 14 Nov '06  
AnswerRe: License? PinmemberVijay Mathew Pandyalakal17:45 14 Nov '06  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120529.1 | Last Updated 14 Jan 2007
Article Copyright 2004 by AnOldGreenHorn
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid