blob: 4dd011a2aac764b7f6fb30841c9e128abc84bc80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
config BR2_PACKAGE_LUASQL
bool "luasql"
help
LuaSQL is a simple interface from Lua to a DBMS.
http://www.keplerproject.org/luasql
if BR2_PACKAGE_LUASQL
choice
prompt "LuaSQL Driver"
help
Select backend driver for LuaSQL.
config BR2_PACKAGE_LUASQL_DRIVER_SQLITE3
bool "SQLite3"
select BR2_PACKAGE_SQLITE
help
Select if you wish to use the SQLite3 LuaSQL driver.
endchoice
endif
|