About 1,110,000 results
Open links in new tab
  1. python - How to connect to SQL using Pyodbc - Stack Overflow

    Aug 27, 2022 · How to connect to SQL using Pyodbc Asked 3 years, 4 months ago Modified 3 months ago Viewed 11k times

  2. Retrieving Data from SQL Using pyodbc - Stack Overflow

    I am trying to retrieve data from an SQL server using pyodbc and print it in a table using Python. However, I can only seem to retrieve the column name and the data type and stuff like that, not …

  3. python pyodbc : how to connect to a specific instance

    Am trying to connect to a specific instance of SQL Server and get some data from system tables. Am connecting using this code snippet: connSqlServer = pyodbc.connect('DRIVER={SQL Server …

  4. how do you connect to oracle using pyodbc - Stack Overflow

    I am trying to connect to Oracle db using pyodbc, getting errors. The examples include ms sql server driver: in my /etc/unixODBC/odbc.ini, I have this entry: [test_con] Driver=Oracle …

  5. return column names from pyodbc execute () statement

    Jun 13, 2015 · return column names from pyodbc execute () statement Asked 13 years, 3 months ago Modified 6 years, 5 months ago Viewed 97k times

  6. how to catch specific pyodbc error message - Stack Overflow

    Jul 9, 2012 · 11 pyodbc seems to just wrap the errors/exceptions from the underlying ODBC implementation, so it's unlikely that you will be able to do this.

  7. ModuleNotFoundError: No module named 'pyodbc' when importing …

    import pyodbc as pyodbc ModuleNotFoundError: No module named 'pyodbc' (where line 5 is the 'import pyodbc' line) I have tried copying the pyodbc.cp37-win_amd64.pyd file into my Python …

  8. Facing pyodbc.InterfaceError When Connecting to SQL Server …

    Jun 13, 2024 · I am currently encountering an issue with a Python script that connects to a SQL Server database using pyodbc. This script was functioning correctly under Python 3.7.3, but …

  9. Getting Table and Column names in PyOdbc - Stack Overflow

    Getting Table and Column names in PyOdbc Asked 12 years, 10 months ago Modified 2 years, 9 months ago Viewed 52k times

  10. Automatically Detect ODBC Driver using Pyodbc in Python 3

    Apr 9, 2018 · 10 Hi I'm currently using pyodbc in Python 3 and I'm trying to figure out a way to automatically detect ODBC Driver by not having to change manually when used by different …