Pyodbc is a module that allows you to use ODBC from Python
0
votes
0answers
21 views
pyodbc locks tables and takes too long to run
I have a python script to download files from an SFTP site to a local folder and then run a stored procedure using the downloaded file. The first aspect runs fine. But then the execution of the stored ...
4
votes
1answer
51 views
Python inserts a colon in a Decimal number from Access via pyodbc
I'm having the same problem as this guy and possibly this guy, but I am around to share some code and respond to questions!
I have some code in a batch job that reads fields from a Microsoft Access ...
0
votes
0answers
19 views
pyodbc remove unicode strings
I'm using pyodbc to connect sqlserver and below is my connection string..Everything is proper but the results are returned as a unicode string..I have the CHARSET=UTF8 in the connection string but ...
1
vote
2answers
31 views
Error while importing file into DB2 from python script
Getting the below error while trying to import a ^ delimited file into a DB2 database using python 2.4.3.
Error:
Traceback (most recent call last):
File "C:\Python25\Usefulscripts\order.py", line ...
0
votes
0answers
26 views
pyodbc connect to database twice and failed
I'm trying use Python and pyodbc to access SQL server 2008. The first connection works. Then, after the program finishes its job, it closes the connection. When the program tries to access the ...
1
vote
4answers
37 views
Output Pyodbc cursor output as Python dictionary?
How do I serialize pyodbc cursor output (from .fetchone, .fetchmany or .fetchall) as a Python dictionary?
I'm using bottlepy and need to return dict so it can return it as JSON.
0
votes
2answers
75 views
Connecting to MS SQL Server with Windows Authentication using Python?
How do I connect MS SQL Server using Windows Authentication, with the pyodbc library?
I can connect via MS Access and SQL Server Management Studio, but cannot get a working connection ODBC string for ...
0
votes
1answer
19 views
Emulate SQL Server connector in Python?
I am a little confused about the pyodbc syntax. Basically I want to create a couple of functions to generate different strings configured for different authentication types; for pushing into pyodbc.
...
0
votes
1answer
45 views
Python database insert
I've been trying to parse a text file (opened with parameter encoding='utf8') and insert extracted values into an mdb database using pyodbc module.
I have tried the code below:
for line in fp:
...
0
votes
1answer
73 views
Replicating .accdb database tables with python pyodbc
Novice python user here. There are other ways to achieve this, but I believe this is my best option. I maintain an MS Access 2007 database (.accdb) that is used on offline TabletPCs in the field to ...
1
vote
1answer
26 views
Generating pyodbc SQL syntax within a loop
Can you do such a thing? I have the following but cursor.execute does not like the syntax of selectSQL. Ultimately I'm looking to iterate through all tables in a .accdb and insert records from each ...
2
votes
1answer
175 views
Pyodbc - “Data source name not found, and no default driver specified”
I have trouble getting pyodbc work. I have unixodbc , unixodbc-dev, odbc-postgresql, pyodbc packages installed on my Linux Mint 14.
I am losing hope to find solution on my own, any help appreciated. ...
1
vote
1answer
54 views
pyodbc sqlserver cursor decimal rounding
I am getting this issue where I fetch results using (fetchall in this example) any of the fetch methods in the pyodbc API, the decimal values get rounded to two places. In the MSSQL database, more ...
-1
votes
3answers
41 views
Inserting variable as SQL value in python
exp = "Ted is a good film"
cursor.execute ("insert into films (descp) values (exp)")
cursor.commit()
I'm using above code with MS SQL server, but it says: Invalid column name'exp'
I'm using pyodbc.
0
votes
1answer
33 views
Pyodbc generator no mapping column name
Im using Pyodbc to connect to sqlserver to get few rows. The select query I execute fetches almost 200,000 rows causing a memory issue.
To resolve this issue Im using a generator object, to fetch ...
0
votes
1answer
27 views
pyodbc-access column by name
I have 2 tables with 150 columns and trying to join those tables and fetch the result set one by one and process them:
qry = '''select a.*, b.*
from table_a a
full outer join ...
1
vote
1answer
52 views
pyodbc & MS SQL Server - “No results. Previous SQL was not a query.”
I am using pyodbc to retrieve data from a Microsoft SQL Server. The query is of the following form
SET NOCOUNT ON --Ignore count statements
CREATE TABLE mytable ( ... )
EXEC some_stored_procedure
...
0
votes
1answer
37 views
how can I use stored procedure with parametters in python code
I want to use stored procedure in python code like below.
import pyodbc
conn = pyodbc.connect('Trusted_Connection=yes', driver = '{SQL Server}',
server = 'ZAMAN\SQLEXPRESS', ...
1
vote
1answer
71 views
pyODBC and SQL Server 2008 and Python 3
I have pyODBC installed for Python 3.2 and I am attempting to update a SQL Server 2008 R2 database that I created as a test.
I have no problem retrieving data and that has always worked.
However ...
0
votes
0answers
40 views
Retrieve access database with pyodbc for a database with a system.mdw file
(OS windows XP/7, python 2.7)
I want to read data from an access database dataO.mdb protected by a system.mdw file. The database is not protected by a password. I can open dataO.mdb directly with MS ...
2
votes
1answer
224 views
Connecting to SQL Server 2012 using sqlalchemy and pyodbc
I'm trying to connect to a SQL Server 2012 database using SQLAlchemy (with pyodbc) on Python 3.3 (Windows 7-64-bit). I am able to connect using straight pyodbc but have been unsuccessful at ...
-1
votes
1answer
36 views
Pyodbc select not working [closed]
Im trying to create a db object to execute sql queries. The below code works fine when the query is:
"""select name from sys.columns"""
but this query is not working:
cur.execute("select name ...
0
votes
0answers
84 views
Efficient memory usage in python
I wrote a Python script using pyodbc to transfer data from an excel sheet into ms access and also using matplotlib to use some of the data in the excel sheet to create plots and save them to a folder. ...
1
vote
1answer
42 views
PYQT4- pyodbc driver error
i keep getting this pyodbc driver error and i can not fix it at all can anyone help? i am using pyqt4 with microsoft access to act as a data repository. Ignore any dodgy indentations.
here is my ...
2
votes
2answers
117 views
pyodbc - inserting selected rows (access mdb)
When inserting selected records / rows from an Access .mdb table, I find a "Syntax error in INSERT INTO statement. (-3502)" on line 23 of this code block.
What I want to happen is to
Create a ...
0
votes
1answer
84 views
Connection strings using pyodbc module not working with Enthought Python Distribution
Background
I have been using a 64bit version of Python 2.7.3. I wanted to learn the matplotlib and numpy libraries so I ended up installing the Enthought Python Distribution for Windows and I also ...
0
votes
0answers
80 views
PyODBC Oracle error when retrieving data from view
i am working on a simple script that will extract some data I need for work. We have Oracle database for which I have made scripts before, and they worked. Anyway, here's the code:
import pyodbc, re, ...
3
votes
1answer
154 views
Writing unicode strings to Excel 2007
I am connecting to a MS SQL server using pyodbc. Furthermore, I am trying to write to an Excel 2007/10 .xlsx file using openpyxl.
This is my code (Python 2.7):
import pyodbc
from openpyxl import ...
1
vote
1answer
183 views
Getting Table and Column names in PyOdbc
I'd like to retrieve the fully referenced column name from a PyOdbc Cursor. For example, say I have 2 simple tables:
Table_1(Id, < some other fields >)
Table_2(Id, < some other fields ...
1
vote
1answer
102 views
Not sure why my Stored Procedure isn't working between pyodbc and SQL Server
I'm pretty new to Python (2.7) and am just not a lot of help with pyodbc. I have a script that calls a stored procedure:
sql = "exec gen_all.dbo.rpt_trinity_total '" + startDate + "', '" + endDate ...
0
votes
0answers
134 views
unable to install pyodbc in centos 6.3 ?
I've Installed packages:
yum install python-setuptools
yum install gcc-c++
yum install unixODBC-devel
but still getting below error while running pip-python install pyodbc
error: command 'gcc' ...
1
vote
1answer
81 views
Corrupted resultset using pyodbc
Python version 2.6
pyodbc version 3.0.6
Python code example:
#!/usr/bin/python26
import pyodbc
import os
import sys
SQL = sys.argv[1];
conn = pyodbc.connect('DSN=VerticaDSN')
cursor = ...
1
vote
1answer
53 views
Python script with pyodbc code not running using EXE made from py2exe
I made a small Python Tkinter application that does some stuff with .mdb files using the pyodbc extension. I tried making an EXE using py2exe, but get the following error when I try to run the EXE.
...
0
votes
3answers
95 views
Python, how to keep program going after exception is caught
probably a simple question as I fairly new to python and programming in general but I am currently working on improving a program of mine and can't figure out how to keep the program going if an ...
0
votes
1answer
168 views
PyODBC return error, but why?
I try execute T-SQL query in two cases (i use Win7, python 3.2, MS SQL Server express 2008,pyodbc for python 3.2):
-case 1:
using MS SQL Server Management Studio i try to execute query:
USE ...
0
votes
2answers
49 views
pyodbc “commit” command not recognised in Python 3.2
Has anybody got pyodbc installed with Python 3.2?
I have, and all is well except that the interpreter doesn't recognise "commit()".
Anyone else got the same problem?
Anyone know if I'm doing something ...
2
votes
0answers
159 views
does pyodbc have any design advantages over pypyodbc?
I know pyodbc is an older project and probably more featureful and robust, but is there anything about its design (based on components of compiled C code), that would make it preferable to a pure ...
1
vote
3answers
96 views
python Pyodbc, cant create a field named “Date” in the table
The problem is that I can't create a field named Date (I think because its a type)
Any ideas how to do that?
from pyodbc import connect
# database connect
conn = connect('DRIVER={Microsoft Access ...
0
votes
0answers
165 views
Problems connecting with Teradata database using pyodbc
Currently, I'm running a simple python script to connect to a database:
import pyodbc
cnxn = pyodbc.connect('DRIVER={Teradata};DBCNAME=(MYDB);UID=(MYUSER); PWD=(MYPASS);QUIETMODE=YES')
With the ...
0
votes
1answer
443 views
Python/PyODBC Connect to SQL Server 2008 DB by IP with Trusted Connection
If this has been asked, I apologize in advance, I couldn't find the right answer, although I've found similar questions.
I'm trying to connect to a SQL Server 2008 DB by using it's IP / Port using ...
0
votes
1answer
45 views
pyodbc returning ® as?
on oracle db table, i have a ® character with some data
pyodbc executing the same query from WinXP 32bit and Win7 64bit gives different results
Dumping the data to a file gives output as:
Winxp : ...
0
votes
0answers
187 views
pyodbc is very slow
I am accessing a db2 (9.7) server running on the same network as my computer using python 2.7 and pyodbc 3.0.6.
The following is a very stripped down example of something similar to what i am trying ...
0
votes
1answer
73 views
pyodbc memory leak when committing after select statement
I've met a memory leak problem with pyodbc. It took me a lot of time to track down. Finally I got the piece of code where memory leak happens.
import pyodbc
conn = pyodbc.connect(myconnstr)
cur = ...
1
vote
3answers
350 views
Reading DBF files with pyodbc
In a project, I need to extract data from a Visual FoxPro database, which is stored in dbf files, y have a data directory with 539 files I need to take into account, each file represents a database ...
0
votes
1answer
64 views
table variable creation in pyodbc / ceodbc
In both pyodbc and ceodbc, declaring a table variable, inserting some data into it, and then selecting from it doesn't seem to work.
cursor.execute("""
DECLARE @LOG TABLE
(ID varchar(10))
...
0
votes
1answer
87 views
How can i connect Remote MS access using pyodbc
How can i connect to remote MS Access DB using pyodbc, before i can able to connect to MS SQL server using pyodbc via freetds. But if i use the same freetds configuration for remote access, 'i'm not ...
4
votes
1answer
71 views
sql print statements from pyodbc
How do I get the output from the sql_query?
import pyodbc
sql_query = "print 'Hello World'"
conn = pyodbc.connect("DRIVER={SQL Server};
SERVER=myserver;
DATABASE=mydatabase;
UID=myusername;
...
1
vote
1answer
65 views
pyodbc path in sql statement not working
I`m quite new to python and would like to copy a table from one mdb to another mdb using pyodbc. There seems to be a problem with the paths if a Foldername starts with a digit. I googled for an hour ...
3
votes
2answers
559 views
How do I configure pyodbc to correctly accept strings from SQL Server using freeTDS and unixODBC?
I can not get a valid string from an MSSQL server into python. I believe there is an encoding mismatch somewhere. I believe it is between the ODBC layer and python because I am able to get readable ...
1
vote
2answers
267 views
Django SqlServer Improperly configured - settings.DATABASES
Earlier i had a problem with my pyodbc module, that did not run my application on the apache server, running on my windows machine. I found to solve my problem of getting the django project to run on ...

