Intersystem Cache
See original GitHub issueHello everyone, I am trying to connect to an Intersystem Caché database but without success, does pyodbc support this db?
Here is the error I get when connecting to db:
import pyodbc
con = pyodbc.connect('DRIVER=InterSystems ODBC;SERVER=192.168.0.9;DATABASE=CCMM_PREVIEW_DSN;UID=sysadmin;PWD=teste1')
Error: (‘S1000’, ‘[S1000] [Cache ODBC][State : S1000][Native Code 417]\r\n[C:\Users\jerson.junior\AppData\Local\Continuum\anaconda3\python.exe]\r\nAcesso Negado (417) (SQLDriverConnect); [S1000] [Microsoft][ODBC Driver Manager] O driver não oferece suporte à versão de comportamento de ODBC solicitada pelo aplicativo (consulte SQLSetEnvAttr). (0)’)
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (1 by maintainers)
Top Results From Across the Web
Caché ® is a high-performance database - InterSystems
InterSystems Caché ® is a high-performance database that powers transaction processing applications around the world. It is used for everything from mapping ...
Read more >InterSystems Caché - Wikipedia
InterSystems Caché is a commercial operational database management system from InterSystems, used to develop software applications for healthcare management ...
Read more >InterSystems Caché Reviews, Ratings & Features 2022
InterSystems Cache is a fast, secure and optimized database system that comes with great features and capabilities for our business.
Read more >Intersystem Cache — High Performence and Operations DBMS
Intersystem Cache is a commercial operational database management system from intersystem, used to develop healthcare management, banking and financial, ...
Read more >InterSystems Caché vs. Microsoft SQL Server vs. Oracle ...
Oracle. Please select another system to include it in the comparison. Editorial information provided by DB-Engines. Name, InterSystems Caché ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I don’t have a definitive answer to this, @InfoAlenia , but judging by the InterSystems pyodbc example, it looks like you have to use their “InterSystems ODBC35” driver which supports ODBC version 3.5 (as opposed to the older “InterSystems ODBC” drivers).
Here’s a comment about where you can download ODBC drivers.
what was now the solution???