What are the main programming languages that integrate SQLite? [closed]

0

What are the main programming languages that integrate SQLite as a DBMS in your code?

    
asked by anonymous 05.11.2015 / 05:03

1 answer

5

No mainstream . Programming language is a set of rules for writing code that will be executed by the computer. So it does not make sense what was asked.

Even the implementations of programming languages do not integrate database. The implementation is fundamentally a compiler or interpreter. Part of what is considered language is the standard library that accompanies it. In this case it might even have a built-in database, but most well-known languages do not do this, because standard libraries should only have more basic, universal functions.

There are implementations of bindings of the SQLite API, which is written in C for several languages. Then I would say that all languages have bindings for this database. Even some little-known and well-used languages often have access to it. Obviously there must be some "strange" languages that do not have this ready.

At Wikipedia has a short list , but could cite several others not listed there.

To tell you the truth, this matters little. Choose the language that fits 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).

    
05.11.2015 / 05:34