-
I'm trying to create procedure on Teradata using turbodbc. There is my sample code:
```
import turbodbc
with turbodbc.connect(dsn="my_dsn") as con:
with con.cursor() as cur:
cur.execu…
-
Install fails on python 3.7(Windows 10 x64) with the message:
```
(base) C:\SEpython>pip install turbodbc
Collecting turbodbc
Using cached https://files.pythonhosted.org/packages/c9/a7/afbfb0a78…
-
Hi. Im using:
- Ubuntu 16.04
- Python 3.6.4
- Microsoft Driver 13.1
- turbODBC 2.4.1
- Azure SQL Database
Im getting this exception when I try to insert a string of length 1600+ in a nvarchar(…
-
Hello,
I have been asked to evaluate Turbodbc. We have django project and we use the postgres database backend available out of the box for the same. Since Turbodbc claims to be fast, would like to u…
-
To be able to insert a value in an identity column (like an auto-increment column) you need to explicitly set IDENTITY_INSERT on that specific table to ON. Since turbodbc closes the statement handle a…
-
### What is the problem the feature request solves?
# Rationale
The Arrow ecosystem lacks standard database interfaces built around Arrow data, especially for efficiently fetching large datasets (i.…
-
Multiple sequential commands using the same cursor object do not seem to work as expected. The below examples work fine with pyodbc.
Example 1: local temporary tables
(a local temp table starts …
-
src\cpp_odbc\level2\level1_connector.cpp(24): fatal error C1083: Cannot open include file: 'simdutf.h': No such file or directory
error: command 'C:\\Program Files (x86)\\Microsoft Visual Studi…
-
hi there,
slowly getting this to work
but now the query fails with :
2021-06-17
Traceback (most recent call last):
File "C:\Users\Something\.conda\envs\Conda36\lib\site-packages\turbodbc\…
-
Most databases feature common notions:
- Connection
- Session
- Operation or Cursor
- Result set
Result sets for example should support a standard API for conversion to an Arrow record batch …