Dev C++ Database Programming

Oracle Developer Studio IDE. Based on the NetBeans platform and optimized for cloud development. Feature-rich language aware code editor; Oracle Developer Cloud Service plug-in enables access to the Oracle Cloud and simplifies development; Custom extensions for Oracle Database and Oracle Tuxedo development.

  • SQLite Tutorial

Nov 29, 2016  Download Dev-C for free. A free, portable, fast and simple C/C IDE. A new and improved fork of Bloodshed Dev-C. I'm just trying to learn C programming (Coding if you wish ), and this project is excellent for me. Enterprise is a universal rapid application development platform for build business management solutions in HORECA. Aug 15, 2018 This course will give you a full introduction into all of the core concepts in the C programming language. Follow along with the tutorial video and you'll be a C programmer in no time!

  • Advanced SQLite
  • SQLite Interfaces
  • SQLite Useful Resources
  • Selected Reading
Dev c++ compiler

In this chapter, you will learn how to use SQLite in C/C++ programs.

Installation

Before you start using SQLite in our C/C++ programs, you need to make sure that you have SQLite library set up on the machine. You can check SQLite Installation chapter to understand the installation process.

C/C++ Interface APIs

Following are important C/C++ SQLite interface routines, which can suffice your requirement to work with SQLite database from your C/C++ program. If you are looking for a more sophisticated application, then you can look into SQLite official documentation.

Sr.No.API & Description
1

sqlite3_open(const char *filename, sqlite3 **ppDb)

This routine opens a connection to an SQLite database file and returns a database connection object to be used by other SQLite routines.

If the filename argument is NULL or ':memory:', sqlite3_open() will create an in-memory database in RAM that lasts only for the duration of the session.

If the filename is not NULL, sqlite3_open() attempts to open the database file by using its value. If no file by that name exists, sqlite3_open() will open a new database file by that name.

2

sqlite3_exec(sqlite3*, const char *sql, sqlite_callback, void *data, char **errmsg)

This routine provides a quick, easy way to execute SQL commands provided by sql argument which can consist of more than one SQL command.

Here, the first argument sqlite3 is an open database object, sqlite_callback is a call back for which data is the 1st argument and errmsg will be returned to capture any error raised by the routine.

SQLite3_exec() routine parses and executes every command given in the sql argument until it reaches the end of the string or encounters an error.

3

sqlite3_close(sqlite3*)

This routine closes a database connection previously opened by a call to sqlite3_open(). All prepared statements associated with the connection should be finalized prior to closing the connection.

If any queries remain that have not been finalized, sqlite3_close() will return SQLITE_BUSY with the error message Unable to close due to unfinalized statements.

Dev C Database Programming Free

Connect To Database

Following C code segment shows how to connect to an existing database. If the database does not exist, then it will be created and finally a database object will be returned.

Now, let's compile and run the above program to create our database test.db in the current directory. You can change your path as per your requirement.

If you are going to use C++ source code, then you can compile your code as follows −

Here, we are linking our program with sqlite3 library to provide required functions to C program. This will create a database file test.db in your directory and you will have the following result.

Create a Table

Following C code segment will be used to create a table in the previously created database −

When the above program is compiled and executed, it will create COMPANY table in your test.db and the final listing of the file will be as follows −

Dev C++ Database Programming Free

INSERT Operation

Following C code segment shows how you can create records in COMPANY table created in the above example −

When the above program is compiled and executed, it will create the given records in COMPANY table and will display the following two lines −

SELECT Operation

Before proceeding with actual example to fetch records, let us look at some detail about the callback function, which we are using in our examples. This callback provides a way to obtain results from SELECT statements. It has the following declaration −

If the above callback is provided in sqlite_exec() routine as the third argument, SQLite will call this callback function for each record processed in each SELECT statement executed within the SQL argument.

Following C code segment shows how you can fetch and display records from the COMPANY table created in the above example −

Dev C++ Program Examples

When the above program is compiled and executed, it will produce the following result.

UPDATE Operation

Following C code segment shows how we can use UPDATE statement to update any record and then fetch and display updated records from the COMPANY table.

C# Database Programming Tutorial

When the above program is compiled and executed, it will produce the following result.

Dev C++ Database Programming Pdf

DELETE Operation

Following C code segment shows how you can use DELETE statement to delete any record and then fetch and display the remaining records from the COMPANY table.

When the above program is compiled and executed, it will produce the following result.