Config.in 3.1 KB

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