News

Noah Hart has ported SQLite3 to C#. While the first port is slower than the original, the project opens the way for SQLite to be used in .NET managed projects without using P/Invoke or unsafe code.
Developers typically choose between porting the code or dynamic linking to run native code on the JVM. This article examines these approaches, using SQLite as an example, and introduces a third ...
Of course, SQLite is written entirely in C and the API is, well, a little awkward. At the end of the day, however, it is just C, and modern C++ can make working with SQLite a breeze. It just takes a ...
In all but the simplest of applications, it's necessary to be able to save and retrieve data. This might be just settings or it might be data that users have entered. The Universal Windows Platform ...