The pymssql tag has no wiki summary.
5
votes
3answers
1k views
Python - Linux - Connecting to MS SQL with Windows Credentials - FreeTDS+UnixODBC + pyodbc or pymssql
There doesn't seem to be any great instructions for setting this up. Does anyone have any good instructions? I am a linux noob so be gentle. I did see another post that is similar, but no real ...
2
votes
2answers
404 views
MSSQL in python 2.7
Is their module available for connetion of MSSQL and python 2.7 .I downloaded pymssql but it is for python 2.6.So is their any another module for python 2.7, i am not aware of it can any buddy have ...
2
votes
2answers
251 views
python and pymssql
I'm new to python. I'm trying to query a MSSQL database.
import pymssql
conn = pymssql.connect(host='hostname', user='username', password='password', database='dbname')
cursor = conn.cursor()
sql ...
2
votes
2answers
254 views
Can not see the DB query output in python
I'm execute a simple mssql query from python.
I can see in the profiler that the query reach the DB.
The query has 1 row of answer.
I fail to see the output in the Python shell
I run the code below
...
2
votes
2answers
2k views
How to install pymssql on windows with python 2.7?
It seems that there are no such binaries yet.
There is an issue on googlecode:
http://code.google.com/p/pymssql/issues/detail?id=12
but i cannot figure out what to do with those files provided.
2
votes
2answers
931 views
Convert or strip out “illegal” Unicode characters
I've got a database in MSSQL that I'm porting to SQLite/Django. I'm using pymssql to connect to the database and save a text field to the local SQLite database.
However for some characters, it ...
1
vote
0answers
61 views
Connect to SQL Server instance using pymssql
I'm attempting to connect to a SQL Server instance from a Windows box using pymssql (version 2.0.0b1-dev-20111019 with Python 2.7.1). I've tried the most basic approach from the console:
import ...
1
vote
4answers
419 views
error: Unable to find vcvarsall.bat when installing PyMSSQL-2.0.0b1… what am i missing?
Well i am trying to install PyMSSQL-2.0.0b1 and can not achieve this, get strange errors... i have tried some solutions found on Google and StackOverflow but still unable to compile...
please what am ...
1
vote
1answer
62 views
Segfault with pymssql when cannot connect to server on multiple threads
We've come across this when our MS SQL server became unreachable. This caused a bug in our code that brought our program to a screeching halt and of course pitchforks and torches of users to our door. ...
1
vote
2answers
286 views
pymssql problem - INSERT does not work with parameters
I'm using pymssql to do database programming with Python on Linux.
I'm having problems with passing parameters to queries. This problem only seems to exist with INSERT queries.
This works:
query = ...
1
vote
0answers
201 views
MySQL + Python (IronPython) timeout problem
I'm querying MS SQL using python using the source code from http://www.ironpython.info/index.php/Accessing_SQL_Server:
import clr
clr.AddReference('System.Data')
from System.Data import *
...
0
votes
1answer
82 views
gcc: _mssql.c: No such file or directory
I'm trying to compile pymssql for python 2.5. I'm doing this because I think the version of pymssql I have is compiled for python 2.4. This is the error I get which makes me think that:
...
0
votes
1answer
46 views
pymssql ( python module ) unable to use temporary tables
This isn't a question, so much as a pre-emptive answer. (I have gotten lots of help from this website & wanted to give back.)
I was struggling with a large bit of SQL query that was failing when ...
0
votes
1answer
132 views
SQLAlchemy connects to SQLServer using Windows Authenticaton with pymssql driver
I can use pymssql to connect to SQLServer using Windows Authentication:
conn = pymssql.connect(host='..', database='..', trusted=True)
But how could I use SQLAlchemy to connect to SQLServer using ...
0
votes
1answer
387 views
pymssql throws ImportError: No module named _mssql when build app with py2exe
I have python application that shoud be launched as windows executable. I'm using py2exe and pymssql 1.9.908.
I used next build script to generate application:
from distutils.core import setup
...
0
votes
2answers
289 views
Building pymssql on OS X
Attempting to build any version of pymssql on Mac OS X 10.6.6. Both versions 1.0.2 (stable) and 1.9.909 (trunk) build and install, but return the following error on import. Has anyone had success with ...
0
votes
1answer
108 views
copy data from MSSQL database to Postgresql database with Python
I have two 2 databases. One with MSSQL and another with Postgresql.
I want that my python script is running (for this I use a cron-job on linux), every day.
The data from the MSSQL database should ...
0
votes
4answers
70 views
SQL Server Connection Problems
I just upgraded to a Windows 7 box and installed MS SQL Server 2005 and am trying to open and connect to my local machine using Windows Authentication.
I keep getting 'Cannot connect to CHRISW7O980'. ...
0
votes
0answers
81 views
How to get pymssql results as raw strings, not wrapped in Python objects?
pymssql seems to map SQL query results to native python objects. For example, a row returns as a tuple such as:
(datetime.date(2011, 5, 9), Decimal(100.0), Decimal(1.5))
Is there a way to get raw ...
0
votes
1answer
312 views
get column names from query result using pymssql
Is there any way to get the column names from the pymssql results? If i specify as_dict=True I get back a dictionary, which does contain all the column headers, but since it is a dictionary they are ...
0
votes
2answers
499 views
installing/building pymssql on Mac OS 10.6 (python 2.6)
As instructed in the README and here http://code.google.com/p/pymssql/wiki/Compilation, I've installed Cython (v0.14.1), FreeTDS (v0.82 using MacPorts), and I already have XCode installed with gcc.
...
0
votes
1answer
449 views
Pymssql, How to use it to read unicode data from MSSQL2008
I've used pymssql-1.0.2 and freetds-0.82.7 on ubuntu-10.10.
Also, I have a mssql2008 server on windows-7.
I can connect with mssql from ubuntu using pymssql and freetds.
But I can't get unicode data ...
0
votes
1answer
163 views
sqlalchemy pymssql “connection reset by peer” recovery
I'm running a cherrypy webservice and wondering what the best option is to recover from "connection reset by peer" for a pymssql connection via sqlalchemy. Right now I have to restart the webservice.
0
votes
2answers
342 views
Python search list of objects that contain objects, partial matches
I'm trying to build a simple search engine for a small website. My initial thought is to avoid using larger packages such as Solr, Haystack, etc. because of the simplistic nature of my search needs.
...
0
votes
1answer
327 views
python to mssql encoding problem
Greetings
By using pymssql library, I want to write data to a MSSQL database however I encounter encoding issues. Here is my sample code to write to the DB:
# -*- coding: utf-8 -*-
import _mssql
...
0
votes
1answer
264 views
python's trackback error - using pymssql
am trying to execute the below code using python 2.5.2. The script is establishing the connection and creating the table, but then its failing with the below error.
The script
import pymssql
conn = ...
0
votes
3answers
1k views
Unable to connect to SQL Server via pymssql
I am attempting to connect to SQL Server running on Windows XP system from a *nix system on a local server via pymssql. However, the connection fails as shown below
db = ...
0
votes
3answers
313 views
Using Microsoft SQL through python on a webserver
I'm trying to run some queries to a database from a pylons (paster-based) webserver and every time I try to import the pymssql Library I'm using (its this one by the way) I keep getting this error:
...
0
votes
2answers
434 views
How do I use SQL parameters with python?
I am using python 2.7 and pymssql 1.9.908.
In .net to query the database I would do something like this:
using (SqlCommand com = new SqlCommand("select * from Customer where CustomerId = ...
0
votes
1answer
160 views
Next question about russian encoding, mssql and python
Next question about russian encoding, mssql and python.
I have this simple code:
import pymssql
import codecs
conn=pymssql.connect(host='localhost:1433', user='sa', password='password', ...
0
votes
2answers
460 views
Can't connect to SQL Server 2005 Express from an ASP.NET C# page
I have an MS SQL Server 2005 Express running on a VPS.
I'm using pymssql in Python to connect to my server with the following code:
conn = pymssql.connect(host='host:port', user='me', password='pwd', ...
0
votes
2answers
318 views
optimize pymssql code
i am inserting records to sql server from python using pymssql. The database takes 2 milliseconds to execute a query, yet it insert 6 rows per second. The only problem is at code side. how to optimize ...
0
votes
4answers
456 views
Copy whole SQL Server database into JSON from Python
I facing an atypical conversion problem. About a decade ago I coded up a large site in ASP. Over the years this turned into ASP.NET but kept the same database.
I've just re-done the site in Django ...