Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which DB (SQL) is better supported in Erlang?

What do you recommend me to use with Erlang -- MySQL or Postgres ? Which DB has better (more mature, more stable, faster) driver for Erlang ?

like image 876
Konstantin Avatar asked Mar 28 '10 20:03

Konstantin


People also ask

Which database type is most widely adopted?

Relational Databases. A relational database is the most common type of database. It uses schema, which is a template used to dictate the data structure stored within the database.


1 Answers

The Erlang ODBC interface can be used to connect to any database that has an ODBC driver. This is officially supported and can be used with both MySQL and Postgres. There is a 100% Erlang driver for Postgres called PGSQL. This is not part of OTP and I am not sure about its quality.

like image 121
Vijay Mathew Avatar answered Sep 25 '22 10:09

Vijay Mathew