What I want to accomplish:
- execute import pyodbc statement within Jupyter Notebook and thus use pyodbc to import data from sql databases such as SQL Server, Exasol, etc.
What is the environment:
- Anaconda3 (py36_0) installed on Windows 10 - 64 bit Version
- pyodbc installed via conda (conda install pyodbc) -> this worked as conda list shows that pyodbc 4.0.16 py36_0 is installed
- jupyter notebook works, for example import pandas works fine
What happens:
after issuing the command import pyodbc within the jupyter notebook, the following error message appears:
ImportError Traceback (most recent call last) in () ----> 1 import pyodbc ImportError: DLL load failed: Die angegebene Prozedur wurde nicht gefunden.
Thanks in advance for any helpful answer!