Config.in 1.1 KB

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