Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Property Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
      • Get a Tailored Demo
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +32 2 290 34 90
    • Get a Tailored Demo
  • Pricing
  • Help
  1. APPS
  2. Technical
  3. Database Browser v 19.0
  4. Sales Conditions FAQ

Database Browser

by Ignify https://ignify.co
Odoo

$ 29.90

v 19.0 Third Party
Apps purchases are linked to your Odoo account, please sign in or sign up first.
Availability
Odoo Online
Odoo.sh
On Premise
Lines of code 1481
Technical Name db_browser
LicenseLGPL-3
Websitehttps://ignify.co
You bought this module and need support? Click here!
Availability
Odoo Online
Odoo.sh
On Premise
Lines of code 1481
Technical Name db_browser
LicenseLGPL-3
Websitehttps://ignify.co

DB Browser

Visual PostgreSQL database browser & editor for Odoo administrators

DB Browser gives Odoo system administrators direct access to any PostgreSQL database on the server — browse tables, edit records inline, run custom SQL queries — all from within the Odoo interface. No pgAdmin, no command line needed.

Key Features

🗄️

Multi-Database Support

Switch between any PostgreSQL database on your server. All databases on the instance are listed in a single dropdown.

📋

Table Browser

Browse all tables with live row counts. Search and filter tables by name in the sidebar. Paginated data viewer handles millions of rows.

✏️

Inline Record Editing

Double-click any cell to edit its value directly. Create new rows with a form modal. Delete multiple rows with checkbox selection.

💻

SQL Editor

Write and execute arbitrary SQL queries. Results are displayed in a clean, sortable table. Supports SELECT, INSERT, UPDATE, DELETE.

🔒

Admin-Only Access

Fully restricted to Odoo system administrators (base.group_system). Unauthorised users receive a 403 error from all API endpoints.

⚡

Modern OWL Frontend

Built with Odoo 17/18/19's OWL component framework. Reactive state management, no full-page reloads, instant feedback.

Screenshots

Select Database - Switch Between Databases

DB Browser - Select Database

Table Browser - Browse & Navigate Tables

DB Browser - Table View

New Record - Create Records with Form Modal

DB Browser - New Record

Inline Cell Editing - Double-click to Edit

DB Browser - Inline Editing

SQL Editor - Execute Custom Queries

DB Browser - SQL Editor

How It Works

  1. Install the DB Browser module from Apps.
  2. Navigate to DB Browser in the top menu (System Administrator only).
  3. Select a database from the dropdown to load its table list.
  4. Click a table to browse records — search, sort, paginate.
  5. Double-click a cell to edit inline. Use + New Row to insert records.
  6. Switch to the SQL Editor tab to run custom queries.

Technical Details

Architecture

  • Frontend: OWL component (db_browser_app client action)
  • Backend: 8 REST HTTP endpoints (no RPC overhead)
  • Direct DB access via odoo.sql_db.db_connect()
  • SQL injection prevention via identifier validation regex
  • All write operations logged at WARNING level in Odoo logs

API Endpoints

  • POST /db-browser/api/databases - list databases
  • POST /db-browser/api/tables - list tables + row counts
  • POST /db-browser/api/columns - table schema
  • POST /db-browser/api/records - paginated records
  • POST /db-browser/api/record/create
  • POST /db-browser/api/record/update
  • POST /db-browser/api/record/delete
  • POST /db-browser/api/sql - execute SQL

Security

Built-in Protections

  • Authentication required - all endpoints use auth='user'; unauthenticated requests are rejected at the Odoo layer
  • Admin-only access - every endpoint calls has_group('base.group_system') and returns HTTP 403 for non-administrators
  • SQL injection prevention - table and column identifiers are validated against a strict regex (^[a-zA-Z_][a-zA-Z0-9_]*$); all data values use parameterized queries (%s)
  • Audit logging - every write operation (CREATE, UPDATE, DELETE, raw SQL) is logged at WARNING level in the Odoo server log with the target database, table, and affected values
  • No unauthenticated surfaces - the module registers no public routes; all endpoints require an active Odoo session

Security Audit

DB Browser has been fully audited by Skymap Global, a leading enterprise software and security consultancy. The audit covered authentication & authorisation controls, SQL injection attack surfaces, input validation, session handling, and logging completeness. No critical or high-severity findings were identified.

⚠️ Deployment Notice

This module provides direct read/write access to PostgreSQL databases. It is restricted to System Administrator accounts only. Do not grant system administrator access to untrusted users. All data modification operations are logged in the Odoo server log.

Support & Contact

ignify.co  |  td@ignify.co

Please log in to comment on this module

  • The author can leave a single reply to each comment.
  • This section is meant to ask simple questions or leave a rating. Every report of a problem experienced while using the module should be addressed to the author directly (refer to the following point).
  • If you want to start a discussion with the author or have a question related to your purchase, please use the support page.
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

Website made with