Config.in 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. config ADK_COMPILE_SQLITE
  2. tristate
  3. default n
  4. depends on ADK_PACKAGE_LIBSQLITE
  5. config ADK_PACKAGE_SQLITE_CLI
  6. prompt "sqlite-cli...................... Command line interface for SQLite"
  7. tristate
  8. default n
  9. depends on ADK_PACKAGE_LIBSQLITE
  10. help
  11. SQLite is a small C library that implements a self-contained, embeddable,
  12. zero-configuration SQL database engine. Features include:
  13. * Transactions are atomic, consistent, isolated, and durable (ACID)
  14. even after system crashes and power failures.
  15. * Zero-configuration - no setup or administration needed.
  16. * Implements most of SQL92. (Features not supported)
  17. * A complete database is stored in a single disk file.
  18. * Database files can be freely shared between machines with different
  19. byte orders.
  20. * Supports databases up to 2 terabytes (241 bytes) in size.
  21. * Sizes of strings and BLOBs limited only by available memory.
  22. * Small code footprint: less than 30K lines of C code, less than 250KB
  23. code space (gcc on i486)
  24. * Faster than popular client/server database engines for most common
  25. operations.
  26. * Simple, easy to use API.
  27. * TCL bindings included. Bindings for many other languages available
  28. separately.
  29. * Well-commented source code with over 95% test coverage.
  30. * Self-contained: no external dependencies.
  31. * Sources are in the public domain. Use for any purpose.
  32. http://www.sqlite.org/
  33. This package contains a terminal-based front-end to the SQLite library
  34. that can evaluate queries interactively and display the results in
  35. multiple formats.