View Single Post
Old 11-20-2006, 11:42 AM   #2 (permalink)
teknomage1
Jack of all trades
 
teknomage1's Avatar
 
Join Date: Feb 2005
Location: Los Angeles
Posts: 598
teknomage1 is on a distinguished road
Send a message via AIM to teknomage1
Why not using an existing database? SQLite is very impressive as are mysql and postgres.

If you're set on writing one yourself, realize that modern relational databases are very complicated. In general you take over a chunk of diskspace and write a "filesystem" to store the various tables and columns. You then have to be able to read them into to memory efficiently and write them back to disk in a reliable manner as they change. You also have to have a way to communicate with the database, so you'll need some client server code. Also you probably want to conform to the SQL standard.
__________________
Stop intellectual property from infringing on me
teknomage1 is offline   Reply With Quote