C database.....

C

CBFalconer

nringty said:
how do i get started creating a C database.

By deciding what a database is and does. This is not the group in
which to discuss that.

--
"If you want to post a followup via groups.google.com, don't use
the broken "Reply" link at the bottom of the article. Click on
"show options" at the top of the article, then click on the
"Reply" at the bottom of the article headers." - Keith Thompson
More details at: <http://cfaj.freeshell.org/google/>
 
I

Ian Collins

nringty said:
how do i get started creating a C database............ Plz Help
There is no such word in English as plz.

It all depends how complex you want to get, but at least read a good
book on database design, then find an implementation and study it.
 
N

Nick Keighley

nringty said:
how do i get started creating a C database

you probably should be posting to a general programming group
(eg. comp.programming) or a database group. Then you need to
explain what a "C database" is.

- do you need a full Relational DB?
- can you manage with just storing your data in a file?
- does the data have to be preserved between runs of your program?
 
V

Vladimir S. Oka

nringty said:
how do i get started creating a C database............ Plz Help

A must-have starting point would be:

int main(int argc, char *argv[])
{
return 0;
}

After that, read a good book on general database design,
followed by a good C textbook. You'll find pointers to the
latter scattered around this newsgroup.

Cheers

Vladimir
 
S

Stan Milam

nringty said:
how do i get started creating a C database............ Plz Help

Do you know anything about database programming in general? Are you
wanting to write your own database manager in C (that's a lot of work),
or use a library of some kind. A few years ago there was a book, IIRC,
"Database Programming In C" by someone named Stevens (I think). It was
not too bad. He showed how to implement a small relational database in
C and write some applications for it. Perhaps you can find a copy of it
on Ebay or something like that. Also, there is the C Database Toolchest
available from Mix Software <http://www.mixsoftware.com>.

Regards,
Stan Milam
 
M

Malcolm

Stan Milam said:
Do you know anything about database programming in general? Are you
wanting to write your own database manager in C (that's a lot of work), or
use a library of some kind.
A trivial database manager is easy enough to pull together.
If you wnat to support SQL queries, that's a different matter.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Members online

Forum statistics

Threads
474,173
Messages
2,570,937
Members
47,481
Latest member
ElviraDoug

Latest Threads

Top