Thread: Database

  1. #1
    Registered User
    Join Date
    Aug 2009
    Posts
    11

    Question Database

    Hi.

    I need to develope a database (console appl.), is there database C++ class(es) which allows to do this?

  2. #2
    &TH of undefined behavior Fordy's Avatar
    Join Date
    Aug 2001
    Posts
    5,793
    No, you need to use a 3rdparty library or "roll your own"

    Check out SQLite Home Page

  3. #3
    Registered User
    Join Date
    Aug 2009
    Posts
    11
    Thanx, Fordy.

  4. #4
    Registered User
    Join Date
    Oct 2006
    Posts
    3,445
    I've used sqlite, and found it to be more than adequate for my needs, but for my main project at work we use MySQL. It has support for replication and lots of other business-class features. it is just as powerful as any other commercial RDBMS, but it has the advantage of also being open-source, and therefore free. you can still get a commercial version for a fee, and then you get 24/7 support. I've dealt with their support, and it's absolutely excellent.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. literature database: help with planning
    By officedog in forum C++ Programming
    Replies: 1
    Last Post: 01-23-2009, 12:34 PM
  2. Creating a database
    By Shamino in forum Game Programming
    Replies: 19
    Last Post: 06-10-2007, 01:09 PM
  3. Replies: 10
    Last Post: 05-18-2006, 11:23 PM
  4. Developing database management software
    By jdm in forum C++ Programming
    Replies: 4
    Last Post: 06-15-2004, 04:06 PM
  5. Making a Simple Database System
    By Speedy5 in forum C++ Programming
    Replies: 1
    Last Post: 03-14-2003, 10:17 PM