| | |
Need advice for data storage
Please support our C++ advertiser: Intel Parallel Studio Home
Thread Solved |
Hi i hope SQLite will solve your problem.
SQLite is a in-process library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine. The code for SQLite is in the public domain and is thus free for use for any purpose, commercial or private. SQLite is currently found in more applications than we can count, including several high-profile projects.
SQLite is an embedded SQL database engine. Unlike most other SQL databases, SQLite does not have a separate server process. SQLite reads and writes directly to ordinary disk files. A complete SQL database with multiple tables, indices, triggers, and views, is contained in a single disk file. The database file format is cross-platform - you can freely copy a database between 32-bit and 64-bit systems or between big-endian and little-endian architectures. These features make SQLite a popular choice as an Application File Format. Think of SQLite not as a replacement for Oracle but as a replacement for fopen().
You just need to do a database operation thats it . A table with two column will do ..
for further reference visit :
http://www.sqlite.org/
All the requied details are found in the above mentioned site
SQLite is a in-process library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine. The code for SQLite is in the public domain and is thus free for use for any purpose, commercial or private. SQLite is currently found in more applications than we can count, including several high-profile projects.
SQLite is an embedded SQL database engine. Unlike most other SQL databases, SQLite does not have a separate server process. SQLite reads and writes directly to ordinary disk files. A complete SQL database with multiple tables, indices, triggers, and views, is contained in a single disk file. The database file format is cross-platform - you can freely copy a database between 32-bit and 64-bit systems or between big-endian and little-endian architectures. These features make SQLite a popular choice as an Application File Format. Think of SQLite not as a replacement for Oracle but as a replacement for fopen().
You just need to do a database operation thats it . A table with two column will do ..
for further reference visit :
http://www.sqlite.org/
All the requied details are found in the above mentioned site
Last edited by Aashath; Feb 15th, 2008 at 11:33 am.
"The most important single aspect of software development is to be clear about what you are trying to build." - Bjarne Stroustrup
•
•
•
•
Hi i hope SQLite will solve your problem.
SQLite is a in-process library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine. The code for SQLite is in the public domain and is thus free for use for any purpose, commercial or private. SQLite is currently found in more applications than we can count, including several high-profile projects.
SQLite is an embedded SQL database engine. Unlike most other SQL databases, SQLite does not have a separate server process. SQLite reads and writes directly to ordinary disk files. A complete SQL database with multiple tables, indices, triggers, and views, is contained in a single disk file. The database file format is cross-platform - you can freely copy a database between 32-bit and 64-bit systems or between big-endian and little-endian architectures. These features make SQLite a popular choice as an Application File Format. Think of SQLite not as a replacement for Oracle but as a replacement for fopen().
You just need to do a database operation thats it . A table with two column will do ..
for further reference visit :
http://www.sqlite.org/
All the requied details are found in the above mentioned site
Thank you very much this is exactly what i was looking for
![]() |
Similar Threads
- Help for learnign JSP (JSP)
- Help with Win 98 (Windows 95 / 98 / Me)
- Driver help Needed!! (Windows 95 / 98 / Me)
- Need advice on SAN's (Networking Hardware Configuration)
- Kindly provide advice (Viruses, Spyware and other Nasties)
- Add-ins and whatnot (lots of questions) (PCI and Add-In Cards)
- Fast data storage (C++)
- Need server for office (Networking Hardware Configuration)
Other Threads in the C++ Forum
- Previous Thread: program in c++
- Next Thread: Array help!
| Thread Tools | Search this Thread |
api array beginner binary bitmap c++ c/c++ calculator char char* class classes coding compile compiler console conversion count data database delete desktop developer directshow dll download dynamic email encryption error file forms fstream function functions game getline google graph gui homeworkhelper iamthwee ifstream input int integer java lib linkedlist linker linux loop looping loops map math matrix memory multiple news node number numbertoword output parameter pointer problem program programming project proxy python random read recursion recursive reference return rpg sorting string strings struct template templates test text text-file tree unix url vector video visualstudio win32 windows winsock word wordfrequency wxwidgets





