Click here to Skip to main content
15,860,861 members
Articles / Database Development / SQL Server
Article

DarkSide SQL Mini Version 1, The embedded database

Rate me:
Please Sign up or sign in to vote.
3.50/5 (27 votes)
23 Mar 2006BSD2 min read 155.8K   2.9K   57   56
An embedded database library in C++.

Introduction

Providing local data storage in an application is a real problem faced by many a C++ programmer. To avoid getting oneself confused with low-level file handling routines and chores like data indexing, most programmers tend to use commercial database systems even for minimum data handling purposes. If your application doesn't need the capabilities of a complete RDBMS server, then a small and efficient database library that plugs into your source code will seem an interesting solution. DarkSide SQL Mini is an effort to create such a library. You can take this as a beta release and I want developers to test this code and report bugs before the stable release. You may find even this beta release useful in many of your projects. The best thing about DarkSide SQL Mini is that, unlike other embedded database libraries, you don't have to learn a new set of APIs. It provides a subset of SQL that you can use to define schemas and manipulate data. All you have to learn to use are two classes (Database and ResultSet) and two member functions (execute() and executeQuery())!. Everything else is plain SQL.

Using the code

DarkSide SQL Mini is a source code library. Copy all CPP files in the \dsqlm_1\cpp folder to your projects working directory, add the \dsqlm_1\include directory to your include path, link your object code with dsqlm_1\libdb41s.lib and you are done. You have a nice database system embedded in your application. Now on to some SQL lessons...

First include dsqlm.h in your CPP file:

#include "dsqlm.h"
using namespace dsqlm;

Next create a database object:

Database db("zoo");

This will create the folder zoo, if it does not exist. To create a table, call the CREATE TABLE command.

db.execute("CREATE TABLE animals(name varchar(40) indexed,age int,dob date)");

Data is inserted using the INSERT command:

db.execute("INSERT INTO animals VALUES('Joe',2,'2001-2-20')");

SELECT command is used to search and retrieve data:

ResultSet rslt = db.executeQuery("SELECT * FROM animals WHERE age > 1");
while(rslt.next()) {
  cout << rslt.getString(1) << rslt.getString(3) << endl;
}

The above code will print the name and date of birth of all animals whose age is above 1. In addition to these commands, DarkSide SQL Mini supports DELETE, DROP TABLE, DROP DATABASE and OPTIMIZE commands. The installation contains detailed documentation on the library.

In the demo code, you will find a complete working program that demonstrates the use of various DarkSide SQL commands. Follow the instructions in DarkSide SQL Mini Help files to compile this code.

If you need a complete RDBMS server, you can download DarkSide SQL server for free.

History

  • Created: Nov 23rd, 2003
  • Updated: Nov 27th, 2003: Fixed bug in logical expression parsing.

License

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


Written By
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralOne Kind Information Sir Pin
GovindanHari3-Apr-09 2:17
GovindanHari3-Apr-09 2:17 
QuestionAgain bugs sir.... Pin
GovindanHari3-Apr-09 2:09
GovindanHari3-Apr-09 2:09 
AnswerRe: Again bugs sir.... Pin
AnOldGreenHorn3-Apr-09 2:24
AnOldGreenHorn3-Apr-09 2:24 
GeneralRe: Again bugs sir.... Pin
GovindanHari4-Apr-09 2:58
GovindanHari4-Apr-09 2:58 
GeneralRe: Again bugs sir.... Pin
GovindanHari4-Apr-09 3:47
GovindanHari4-Apr-09 3:47 
Generalerror LNK2005 Pin
GovindanHari2-Apr-09 21:37
GovindanHari2-Apr-09 21:37 
GeneralRe: error LNK2005 Pin
AnOldGreenHorn2-Apr-09 21:56
AnOldGreenHorn2-Apr-09 21:56 
Questionerror C2059 Pin
GovindanHari2-Apr-09 6:14
GovindanHari2-Apr-09 6:14 
AnswerRe: error C2059 Pin
AnOldGreenHorn2-Apr-09 19:27
AnOldGreenHorn2-Apr-09 19:27 
Questioncompile error Pin
GovindanHari2-Apr-09 4:58
GovindanHari2-Apr-09 4:58 
AnswerRe: compile error Pin
AnOldGreenHorn2-Apr-09 19:23
AnOldGreenHorn2-Apr-09 19:23 
GeneralSqlite Pin
newmodel27-Mar-06 4:20
newmodel27-Mar-06 4:20 
GeneralRe: Sqlite [modified] Pin
AnOldGreenHorn27-Mar-06 15:47
AnOldGreenHorn27-Mar-06 15:47 
GeneralRe: Sqlite Pin
newmodel27-Mar-06 21:36
newmodel27-Mar-06 21:36 
GeneralRe: Sqlite Pin
AnOldGreenHorn28-Mar-06 15:25
AnOldGreenHorn28-Mar-06 15:25 
Generalsource code of the library: libdb41s.lib Pin
ozmanothman9-Nov-04 16:04
ozmanothman9-Nov-04 16:04 
GeneralRe: source code of the library: libdb41s.lib Pin
AnOldGreenHorn9-Nov-04 16:35
AnOldGreenHorn9-Nov-04 16:35 
GeneralRe: source code of the library: libdb41s.lib Pin
ozmanothman10-Nov-04 3:50
ozmanothman10-Nov-04 3:50 
Generalwarning massage Pin
ozmanothman6-Nov-04 9:37
ozmanothman6-Nov-04 9:37 
GeneralRe: warning massage Pin
AnOldGreenHorn7-Nov-04 16:49
AnOldGreenHorn7-Nov-04 16:49 
Question.net assembly? Pin
skitsanos5-Nov-04 7:39
skitsanos5-Nov-04 7:39 
AnswerRe: .net assembly? Pin
AnOldGreenHorn5-Nov-04 16:36
AnOldGreenHorn5-Nov-04 16:36 
GeneralCompile error Pin
Chong Ching Yu6-Jan-04 20:16
Chong Ching Yu6-Jan-04 20:16 
GeneralRe: Compile error Pin
AnOldGreenHorn8-Jan-04 0:42
AnOldGreenHorn8-Jan-04 0:42 
GeneralRe: Compile error Pin
Chong Ching Yu8-Jan-04 16:31
Chong Ching Yu8-Jan-04 16:31 

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

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