How to integrate Odoo with MySQL

I am trying to integrate Odoo (openerp-8) with MySQL on an ubuntu server in order to access the database instead of postgresql.

But I can not find the right way to do this.

I tried this link but it didn’t help me

http://openerp-team.blogspot.de/2009/08/open-erp-server-with-mysql.html

Any best ideas for setting up odoo with MySQL?

+4
source share
1 answer

In Odoo Store applications One Free module Available name "External Database Sources"

This module allows you to define connections to external databases using ODBC, Oracle Client, or SQLAlchemy.

Database sources can be configured in Settings> Configuration → Data Sources.

Depending on the database, you need to:

  • to install unixodbc and python-pyodbc packages to use ODBC connections.
  • install the FreeTDS driver (tdsodbc package) and configure it via ODBC to connect to Microsoft SQL Server.
  • to install and configure Oracle Instant Client and cx_Oracle python library to connect to Oracle.

Sun and Open ERP:

Cost-effective, highly scalable ERP solution Read this document. Write to Fabienne Pickers, CEO of Odoo and Sun: http://www.epicos.com/EPCompanyProfileWeb/Content/NARITAS/Sun_and_Open_ERP.pdf

SnipptBucket News: http://snippetbucket.com/2014/07/openerp-mysql-odoo-mysql-synchronization-odoo-automation-openerp-automation/

Link Link: https://www.odoo.com/apps/modules/8.0/base_external_dbsource/

+1
source

All Articles