Config.in.lib 1.5 KB

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