Availability |
Odoo Online
Odoo.sh
On Premise
|
Lines of code | 280 |
Technical Name |
web_db_manager |
License | OPL-1 |
Website | http://www.aka-group.com |
Versions | 12.0 13.0 |
Availability |
Odoo Online
Odoo.sh
On Premise
|
Lines of code | 280 |
Technical Name |
web_db_manager |
License | OPL-1 |
Website | http://www.aka-group.com |
Versions | 12.0 13.0 |
Please switch to the Documentation tab for installation and usage guide. This module is tested on Odoo Enterprise Edition, but NOT on Odoo Community Edition.
Database Manager
The DB Manager allows you to run SQL queries directly on the Odoo web interface. Ideal for Odoo.sh instances with limited database management features or self-hosted instances that you'd like to manage remotely.

Features
Interact With Your Data

Run simple or complicated queries to select data, and view the results in a table right inside the web interface. Queries are automatically formatted with third party python dependency sqlparse (please refer to the Documentation tab for installation information).

Choose Return Text to return a python list of dictionaries which is easier to play with python.
Update the Data

Run queries to updated or even delete data. If a query will affect the database, that will always be dry run first and changes will not commit until a further confirmation is made.

Dangerous operations, including "ALTER TABLE", "ALTER VIEW", "CREATE TABLE", "CREATE VIEW", "DROP TABLE", "DROP VIEW", and "DROP DATABASE" are not allowed by design. (Relies on third party python dependency sqlparse, please refer to the Documentation tab for installation information)
Query Execution Logs

Logs are stored for all quesies that affects the database for traceability.
Icon licensed by flaticon.com; made
by Smashicons.
Icon
adapted with Flat
Icon Generator
.
Cover image created by starline
- www.freepik.com.
Some features (removable) requires the third party python dependency sqlparse that is licensed
under the BSD license.
Database Manager
Installation
Before installing the Database Manager you need to install the following dependency:
- sqlparse
Odoo.sh
For Odoo.sh, simply add sqlparse as a new line in the requirements.txt file inside your addon folder. Please refer to the Odoo.sh documentation for details.
Self-Hosted Instances
For self-hosted instances, generally sqlparse should be included under the \Lib\site-packages path of your python installation. Please follow the Installing Odoo guide for details.
Without dependency
To run the module without sqlparse, comment out below lines of code:
- web_db_manager / __manifest__.py: #18
- web_db_manager / models / queries.py: #3, and #107-114
WARNING: features including auto-formatting and dangerous query interceptor will be disabled with these chanegs.
Using
Permission
Only admin users have access to this app to run queries. No one has permission to alter the Execution Logs; queries to modify the logs will be logged.
Select
To read or select from the database, go to the DB Manager - Queries - Create and construct your query in the query section. The Purpose field is optional. Click DRY RUN / SELECT to run the query.
After the result is displayed, if satisfied, to return the result in a python list of dictionaries, enable the Return Text option. It is advised not to directly run a query with the Return Text option enabled as no warning message could be returned in this mode.
Update / Delete
To Update or delete, go to the DB Manager - Queries - Create and construct your query in the query section. Click DRY RUN / SELECT to dry run.
Once the dry run is compelete, either a completion message or an error is returned. Fix the query if error, or click COMMIT to save the changes to the database. The Return Text option should not be enabled when you plan to write to the database, or the guidance message is invisible.
View Logs
To view SQL execution logs, go to the DB Manager - Execution Logs.
Odoo Proprietary License v1.0 This software and associated files (the "Software") may only be used (executed, modified, executed after modifications) if you have purchased a valid license from the authors, typically via Odoo Apps, or if you have received a written agreement from the authors of the Software (see the COPYRIGHT file). You may develop Odoo modules that use the Software as a library (typically by depending on it, importing it and using its resources), but without copying any source code or material from the Software. You may distribute those modules under the license of your choice, provided that this license is compatible with the terms of the Odoo Proprietary License (For example: LGPL, MIT, or proprietary licenses similar to this one). It is forbidden to publish, distribute, sublicense, or sell copies of the Software or modified copies of the Software. The above copyright notice and this permission notice must be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Please log in to comment on this module