What are the main programming languages that integrate Sqlite?

Asked

Viewed 258 times

1

What are the main programming languages Sqlite as SGBD in your code?

  • Take a look at [tour]. You can accept an answer if it solved your problem. You can vote on every post on the site as well. Did any help you more? You need something to be improved?

1 answer

5

None mainstream. Programming language is a set of rules for writing code that will be executed by the computer, so it makes no sense what was asked.

Even implementations of programming languages do not integrate database. The implementation is fundamentally a compiler or interpreter. Part of what is usually considered language by people is the standard library that accompanies it. In this case it could even have an embedded database, but the most known languages do not do this, because standard libraries should only have more basic and universal functions.

There are implementations of bindings of the Sqlite API, which is written in C, for several languages. Here I would say that all languages have bindings for this database. Even some languages that are not well known and of very restricted use usually have access to it. Obviously there must be some "strange" languages that don’t have this ready.

In the Wikipedia has a short list, but I could quote several others not listed there.

To tell you the truth, it doesn’t matter. Choose the language that suits your problem. And if you’re going to use Sqlite, just make sure it has a good implementation to access the database (it probably exists).

Browser other questions tagged

You are not signed in. Login or sign up in order to post.