2
1

Config.in 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. config BR2_PACKAGE_PYTHON_PSYCOPG2
  2. bool "python-psycopg2"
  3. depends on BR2_USE_MMU # postgresql
  4. depends on BR2_USE_WCHAR # postgresql
  5. depends on BR2_ENABLE_LOCALE # postgresql
  6. depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # postgresql
  7. depends on !BR2_STATIC_LIBS # postgresql
  8. depends on !BR2_OPTIMIZE_FAST # postgresql
  9. select BR2_PACKAGE_POSTGRESQL
  10. help
  11. Psycopg is the most popular PostgreSQL database adapter for
  12. the Python programming language. Its main features are the
  13. complete implementation of the Python DB API 2.0 specification
  14. and the thread safety (several threads can share the same
  15. connection). It was designed for heavily multi-threaded
  16. applications that create and destroy lots of cursors and make
  17. a large number of concurrent INSERTs or UPDATEs.
  18. Psycopg 2 is mostly implemented in C as a libpq wrapper,
  19. resulting in being both efficient and secure. It features
  20. client-side and server-side cursors, asynchronous
  21. communication and notifications, COPY support. Many Python
  22. types are supported out-of-the-box and adapted to matching
  23. PostgreSQL data types; adaptation can be extended and
  24. customized thanks to a flexible objects adaptation system.
  25. Psycopg 2 is both Unicode and Python 3 friendly.
  26. http://initd.org/psycopg/
  27. comment "python-psycopg2 needs a toolchain w/ wchar"
  28. depends on !BR2_USE_WCHAR
  29. comment "python-psycopg2 can't be built with Optimize for fast"
  30. depends on BR2_OPTIMIZE_FAST