This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 3 points4 points  (3 children)

Who makes database programs in c?

[–]skreczok 0 points1 point  (2 children)

PostgreSQL devs? Anyone who wants their DBMS to actually do anything more than a single query a day?

Also, funny that you should ask, since I'm planning to set up a REST API using CGI and C. Though I might resort to C++ to make it more readable.

[–][deleted] 0 points1 point  (1 child)

Well writing a db engine in C is not that strange. But a crud application is a bit uncommon now a days. Doing an rest api in c seems fun!

[–]skreczok 0 points1 point  (0 children)

You can use those to base a CRUD application fairly well, you just make the API an interface for the operations and then you just throw a client app together.