Click here to Skip to main content
15,867,835 members
Articles / Desktop Programming / MFC
Article

EasyODBC

Rate me:
Please Sign up or sign in to vote.
4.72/5 (27 votes)
19 Aug 2003BSD2 min read 128.3K   5.5K   62   36
An easy to use C++ wrapper class for ODBC.

Introduction

MFC provides wrapper classes like CDatabase and CResultSet for accessing databases from your C++ applications. But if you want to avoid using MFC in your application, then you have only one option - call low level ODBC functions. EasyODBC is a C++ code library that provides simple classes that encapsulate Win32 ODBC functions.

Background

For using the classes in EasyODBC, you should have a basic knowledge on databases and SQL. It is also expected that you have working knowledge of C++ and the Visual C++ IDE. If you are familiar with JDBC (Java Database Connectivity), then the classes in EasyODBC will seem more easy to use.

Using the code

For using EasyODBC, first include easy_odbc.h using the #include preprocessor directive. All classes in EasyODBC are part of a namespace called easyodbc.

To open a connection to an ODBC data source, you have to create an object of class Database and call its Open() member function:

easyodbc::Database db;
db.Open("MY_ODBC","username","password");

For retrieving data from the database, you have to use the ResultSet class:

easyodbc::ResultSet rslt = db.ExecuteQuery("SELECT * FROM emp");

Information about the resultset, like the number of columns in it, can be obtained by calling the GetMetaData() function, which returns an object of ResultSetMetaData.

easyodbc::ResultSetMetaData mtdt = rslt.GetMetaData();
int column_count = mtdt.GetColumnCount();
printf("\n%d Columns returned\n",column_count);

For getting information about a particular column, call the GetColumn member function of ResultSetMetaData:

easyodbc::Column col;
mtdt.GetColumn(1,&col);

Data stored in a ResultSet has to be bound to memory buffers for retrieval. This is done using the Bind() function of ResultSet:

char strName[26];
rslt.Bind(1,strName,25); // arguments: column number, 
                         // buffer, maximum length of buffer

The above code binds the first column in the table with the buffer strName. Now, whenever data is returned by the ResultSet, the first column's data will be stored in the variable strName. Data can be pulled out of the ResultSet object by calling either the MoveFirst(), MoveNext(), MovePrevious() or MoveLast() member functions. For e.g., the following code prints out the value of the first column in the ResultSet:

while(rslt.MoveNext()) {
    printf("%s\n",strName);
}

For executing any other SQL statements, you have to call the Execute() member function of Database:

db.Execute("DELETE FROM emp");

The Exceute() function will return the number of rows affected by the statement. After database operations are over, you must release the resources occupied by ODBC by calling the Close() function of the class Database.

EasyODBC provides the EasyODBCException class to handle ODBC exceptions. All EasyODBC code should be enclosed in a try-catch block like this:

try {
// easy_odbc code
}catch(easyodbc::EasyODBCException *ex) {
 char buff[51];
 ex->GetMessage(buff);
 printf("Error: %s",buff);
}

In the demo project you will find a complete working program which demonstrates the use of various EasyODBC classes.

History

  • Created: May 27th, 2003
  • Last updated: August 12th, 2003

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

 
GeneralThanks a lot! Pin
xu_yangmu6-Jan-04 21:56
xu_yangmu6-Jan-04 21:56 
GeneralExcelllent code! Pin
vasacheh23-Dec-03 8:43
vasacheh23-Dec-03 8:43 
QuestionHow Can We perform exclusive lock Pin
Benj104-Dec-03 12:16
Benj104-Dec-03 12:16 
QuestionClosing a Cursor ? Pin
Anonymous9-Sep-03 9:38
Anonymous9-Sep-03 9:38 
AnswerRe: Closing a Cursor ? Pin
Anonymous10-Sep-03 2:36
Anonymous10-Sep-03 2:36 
AnswerRe: Closing a Cursor ? Pin
abenlin9-Jan-04 20:24
abenlin9-Jan-04 20:24 
GeneralRe: Closing a Cursor ? Pin
AnOldGreenHorn12-Jan-04 0:43
AnOldGreenHorn12-Jan-04 0:43 
GeneralRe: Closing a Cursor ? Pin
Member 136465616-Jun-05 12:54
Member 136465616-Jun-05 12:54 
QuestionHow to get # of rows Pin
prcarp1-Sep-03 4:14
prcarp1-Sep-03 4:14 
GeneralNulls Pin
brianma27-Aug-03 2:02
professionalbrianma27-Aug-03 2:02 
GeneralRe: Nulls Pin
kragg28-Dec-03 8:08
kragg28-Dec-03 8:08 

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.