Re: Simplest database management system for Euphoria?
- Posted by egis Jun 09, 2014
- 1701 views
It all depends on how much you know about relational databases. If you know nothing why not start a simple tutorial such as located at w3schools:
http://www.w3schools.com/sql/default.asp?PHPSESSID=300ae3404d5fa2612f238abeebb8869c
The next question I would ask is what kind of problem do you think you need a relational database for. For larger scale data (I do mapping) you can try out mariadb (mysqls creator) or mysql. If you require a small database you can try sqlite suggested in an earlier post (sqlite can get slow loading large tables). All of these databases are very fast for many applications.
Personally I don't have experience using euphorias native db.
I use a database utility edbi (do a search for edbi on this site). edbi interfaces with a number of databases so it opens the doors to a number of databases.
Best of luck.