This is a discussion on database vs fopen - Linux ; I am writing a 155x25 app for use with ssh. And now i want to store information. What is better? Writing C source which... 1. uses database library code (e.g. postgresql database library) or 2. uses the fopen function (in ...
I am writing a 155x25 app for use with ssh. And now i want to store
information. What is better?
Writing C source which...
1. uses database library code (e.g. postgresql database library)
or
2. uses the fopen function (in stdio.h).
The user doesn't need to setup a db server with option 2. Prequisite: the
app must be fast and store a lot info (9806 records), and produce HTML views
(to print).
btw. I did previous projects in option 1, but what is the most fastest?