You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.6 KiB

7 years ago
  1. .. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
  2. :alt: License: AGPL-3
  3. SQL Export
  4. ==========
  5. Allow to export data in csv files FROM sql requests.
  6. There are some restrictions in the sql sql request, you can only read datas.
  7. No update, deletion or creation are possible.
  8. A new menu named Export is created.
  9. Known issues / Roadmap
  10. ======================
  11. * Some words are prohibeted and can't be used is the query in anyways, even in a select query :
  12. * delete
  13. * drop
  14. * insert
  15. * alter
  16. * truncate
  17. * execute
  18. * create
  19. * update
  20. See sql_request_abstract module to fix this issue.
  21. * checking SQL request by execution and rollback is disabled in this module
  22. since variables features has been introduced. This can be fixed by
  23. overloading _prepare_request_check_execution() function.
  24. Bug Tracker
  25. ===========
  26. Bugs are tracked on `GitHub Issues
  27. <https://github.com/OCA/server-tools/issues>`_. In case of trouble, please
  28. check there if your issue has already been reported. If you spotted it first,
  29. help us smash it by providing detailed and welcomed feedback.
  30. Credits
  31. =======
  32. Contributors
  33. ------------
  34. * Florian da Costa <florian.dacosta@akretion.com>
  35. Maintainer
  36. ----------
  37. .. image:: http://odoo-community.org/logo.png
  38. :alt: Odoo Community Association
  39. :target: http://odoo-community.org
  40. This module is maintained by the OCA.
  41. OCA, or the Odoo Community Association, is a nonprofit organization whose
  42. mission is to support the collaborative development of Odoo features and
  43. promote its widespread use.
  44. To contribute to this module, please visit http://odoo-community.org.