Difference between revisions of "SQLite3"

(Blanked the page)
 
Line 1: Line 1:
 +
{{#set:Name=SQLite3}}
 +
{{#set:LOVE Version=Any}}
 +
{{#set:Description=A simple, hassle-free, SQLite3 database solution for Lua.}}
 +
{{#set:Keyword=Database}}
 +
= SQLite3 =
 +
== A simple, hassle-free, SQLite3 database solution for Lua ==
  
 +
 +
 +
 +
=== No Configuration Required ===
 +
SQLite3 runs without the need to move or copy dll/so files or to set up any configuration whatsoever...it just works!
 +
 +
 +
=== Easy to Use ===
 +
SQLite3 is very easy to use with LOVE. All that's needed to get it working is to require it.
 +
 +
<source lang="lua">
 +
require("PathToMyPlugins.sqlite3.sqlite3");
 +
</source>
 +
 +
 +
That's it, you're ready to use local databases.
 +
 +
== Download and Documentation ==
 +
https://github.com/CentauriSoldier/SQLite3-for-Lua
 +
 +
== View Discussion Thread ==
 +
https://love2d.org/forums/viewtopic.php?f=5&t=82760
 +
[[Category:Libraries]]

Latest revision as of 02:37, 21 August 2016



SQLite3

A simple, hassle-free, SQLite3 database solution for Lua

No Configuration Required

SQLite3 runs without the need to move or copy dll/so files or to set up any configuration whatsoever...it just works!


Easy to Use

SQLite3 is very easy to use with LOVE. All that's needed to get it working is to require it.

require("PathToMyPlugins.sqlite3.sqlite3");


That's it, you're ready to use local databases.

Download and Documentation

https://github.com/CentauriSoldier/SQLite3-for-Lua

View Discussion Thread

https://love2d.org/forums/viewtopic.php?f=5&t=82760