Skip to content

Commit 8783cc5

Browse files
committed
[FIX] Fixed pyodbc-binary library
1 parent 6439f65 commit 8783cc5

File tree

3 files changed

+25
-22
lines changed

3 files changed

+25
-22
lines changed

base_external_dbsource_mssql/README.rst

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ Installation
4141

4242
To install this module, you need to:
4343

44-
- Install & configure FreeTDS driver (tdsodbc package)
45-
- Install ``sqlalchemy`` & ``pymssql`` python libraries
46-
- Install ``base_external_dbsource`` Odoo module
44+
- Install & configure FreeTDS driver (tdsodbc package)
45+
- Install ``sqlalchemy`` & ``pymssql`` python libraries
46+
- Install ``base_external_dbsource`` Odoo module
4747

4848
Configuration
4949
=============
@@ -58,17 +58,17 @@ Usage
5858

5959
To use this module:
6060

61-
- Go to Settings > Technical > Database Structure > Database Sources
62-
- Click on Create to enter the following information:
63-
- Datasource name
64-
- Pasword
65-
- Connector: Choose the database to which you want to connect
66-
- Connection string: Specify how to connect to database
61+
- Go to Settings > Technical > Database Structure > Database Sources
62+
- Click on Create to enter the following information:
63+
- Datasource name
64+
- Pasword
65+
- Connector: Choose the database to which you want to connect
66+
- Connection string: Specify how to connect to database
6767

6868
Known issues / Roadmap
6969
======================
7070

71-
- Add X.509 authentication
71+
- Add X.509 authentication
7272

7373
Bug Tracker
7474
===========
@@ -92,26 +92,26 @@ Authors
9292
Contributors
9393
------------
9494

95-
- Daniel Reis <dreis.pt@hotmail.com>
95+
- Daniel Reis <dreis.pt@hotmail.com>
9696

97-
- Maxime Chambreuil <maxime.chambreuil@savoirfairelinux.com>
97+
- Maxime Chambreuil <maxime.chambreuil@savoirfairelinux.com>
9898

99-
- Gervais Naoussi <gervaisnaoussi@gmail.com>
99+
- Gervais Naoussi <gervaisnaoussi@gmail.com>
100100

101-
- Dave Lasley <dave@laslabs.com>
101+
- Dave Lasley <dave@laslabs.com>
102102

103-
-
103+
-
104104

105-
- `Tecnativa <https://www.tecnativa.com>`__:
105+
- `Tecnativa <https://www.tecnativa.com>`__:
106106

107-
- Sergio Teruel
108-
- Carolina Fernandez
107+
- Sergio Teruel
108+
- Carolina Fernandez
109109

110-
- Andrea Cattalani (`Moduon <https://www.moduon.team/>`__)
110+
- Andrea Cattalani (`Moduon <https://www.moduon.team/>`__)
111111

112-
- `Opensourceintegrators <https://www.opensourceintegrators.com>`__:
112+
- `Opensourceintegrators <https://www.opensourceintegrators.com>`__:
113113

114-
- Nikul Chaudhary <nchaudhary@opensourceintegrators.com>
114+
- Nikul Chaudhary <nchaudhary@opensourceintegrators.com>
115115

116116
Maintainers
117117
-----------

base_external_dbsource_mssql/__manifest__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
"website": "https://github.com/OCA/server-backend",
1212
"license": "LGPL-3",
1313
"depends": ["base_external_dbsource"],
14-
"external_dependencies": {"python": ["pymssql", "sqlalchemy", "pyodbc"]},
14+
"external_dependencies": {
15+
"python": ["pymssql", "sqlalchemy", "pyodbc", "unixodbc-dev"]
16+
},
1517
"demo": ["demo/base_external_dbsource.xml"],
1618
"installable": True,
1719
}

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
pymssql
33
pyodbc
44
sqlalchemy
5+
unixodbc-dev

0 commit comments

Comments
 (0)