Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
533 views

sql server function native parameter bind error

I'm using the following software stack on Ubuntu 10.04 Lucid LTS to connect to a database: python 2.6.5 (ubuntu package) pyodbc git trunk commit eb545758079a743b2e809e2e219c8848bc6256b2 unixodbc ...
5
votes
3answers
967 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 ...
5
votes
1answer
1k views

Why doesn't DBD::Sybase's Makefile.PL find freetds?

I'm having trouble trying to install DBD::Sybase on Redhat. Perl version is 5.8.8 and it is the 64-bit version. When I set the SYBASE env variable to the freetds libs in /usr (the rpm puts libtds in ...
3
votes
1answer
405 views

Pyodbc utf-8 bind param error With FreeTDS and unixODBC

FreeTDS version 0.82 unixODBC version 2.3.0 pyodbc version 2.1.8 freetds.conf: tds version = 7.0 client charset = UTF-8 using Servername in the odbc.ini (which for some crazed reason made a ...
3
votes
1answer
1k views

Ruby connecting to SQL Server

I'm having troubles connecting Ruby to Microsoft SQL Server. I'm running Mac OS X, but the target environment is Ubuntu Linux. Here's what I've tried: Install unixODBC Install FreeTDS used the ...
3
votes
2answers
290 views

Connecting to SQL Server 2005 from a ROR application in Ubuntu

I tried to connect to SQL Server from a ROR application in Ubuntu. For that I did the following things. I installed the following libraries in my Ubuntu 10.04 unixodbc unixodbc-dev freetds-dev ...
3
votes
2answers
656 views

Best practices for doing accounting in Python

I am writing a web2py application that requires summing dollar amounts without losing precision. I realize I need to use Decimals for this, but I've found myself having to wrap every single number I ...
2
votes
2answers
95 views

Using alternate unixODBC installation

I'm working in an environment that has unixODBC installed on a org-wide centrally mounted drive, but we (the actual developers) aren't allowed to install drivers or datasources in it. It's all ...
2
votes
1answer
378 views

FreeTDS connection problems on Linux

I'm using FreeTDS 0.91 to connect to a remote MSSQL server but all attempts have borne no fruit thus far. Upon doing a tsql command on my Unix, I get the following error: locale is "en_US.UTF-8" ...
2
votes
1answer
285 views

Connecting Redhat to SQL Server 2008 for Ruby on Rails

I'm trying to connect Redhat Linux to a Microsoft SQL Server 2008. I already had trouble setting it up on windows (my test machine) but now I need to deploy it on the Linux machine where it will be in ...
2
votes
1answer
632 views

FreeTDS problem connecting to SQL Server on Mac (Unexpected EOF from the server)

I have setup FreeTDS to connect to SQL Server database. When I try to open TSQL in terminal on Mac (lion) I get this error: locale is "en_US.UTF-8" locale charset is "UTF-8" using default charset ...
2
votes
4answers
2k views

SqlAlchemy equivalent of pyodbc connect string using FreeTDS

The following works: import pyodbc pyodbc.connect('DRIVER={FreeTDS};Server=my.db.server;Database=mydb;UID=myuser;PWD=mypwd;TDS_Version=8.0;Port=1433;') The following fails: import sqlalchemy ...
2
votes
1answer
293 views

PDO FreeTDS error

I have just upgraded my server from php 5.2 to 5.3.3 and I am having a weird error in PDO (with DBLIB). I am connecting to an SQL Server 2005. I am having The error appears in any statement that ...
2
votes
1answer
598 views

FREETDS and UNIXODBC character converting

ive got an error to fix. its: [FreeTDS][SQL Server]Error converting characters into server's character set. Some character(s) could not be converted when i use turkish characters to insert i get ...
2
votes
1answer
1k views

Django-pyodbc SQL Server/freetds server connection problems on linux

Error: ('IM002', '[IM002] [unixODBC][Driver Manager]Data source name not found, and no default driver specified (0) (SQLDriverConnectW)') I'm migrating from developing on a windows ...
2
votes
2answers
721 views

ODBC query on MS SQL Server returning first 255 characters only in PHP PDO (FreeTDS)

I'm currently trying to pull some data from a SQL Server database view that we have restricted access to from our Linux web server. We don't need to edit the data just display it in a webpage. It ...
2
votes
2answers
219 views

How do odbc (or mysql) resources work in php?

When you run a query like so: $query = "SELECT * FROM table"; $result = odbc_exec($dbh, $query); while ($row = odbc_fetch_array($result)) { print_r($row); } Does the resource stored in $result ...
2
votes
4answers
2k views

using pyodbc on ubuntu to insert a image field on SQL Server

I am using Ubuntu 9.04 I have installed the following package versions: unixodbc and unixodbc-dev: 2.2.11-16build3 tdsodbc: 0.82-4 libsybdb5: 0.82-4 freetds-common and freetds-dev: 0.82-4 ...
2
votes
5answers
6k views

Connecting to MS SQL Server using python on linux with 'Windows Credentials'

Is there any way to connect to an MS SQL Server database with python on linux using Windows Domain Credentials? I can connect perfectly fine from my windows machine using Windows Credentials, but ...
2
votes
2answers
1k views

Connecting to MS SQL Server from PHP on Linux

I need to connect to a MS SQL Server on Windows from PHP running on Red Hat Enterprise Linux 4. I have installed FreeTDS and I can connect to the database using the tsql command. My current PHP does ...
1
vote
1answer
49 views

How to use FreeTDS with Xcode?

I'm a newbie on Mac development, I need to access sql server from cocoa app via FreeTDS but I don't know how to do that. Please help me.
1
vote
1answer
45 views

freeTDS inserting blob inside Asterisk dialplan

Inside an Asterisk application (dialplan) I need to insert in a MSSQL database a sound file. I'm using freeTDS to communicate with the DB. The example table is called "testblob" (id int identity, ...
1
vote
1answer
97 views

FreeTDS and nvarchar(max) data

I use a php application for managing a Microsoft SQL Server Database. The application is installed to unix and uses FreeTDS. While I do not have any problem to read / write data for nvarchar(n), I ...
1
vote
1answer
197 views

Using Freetds, PHP, SQL Server, ADODB and not being able to pass data that has certain special characters in UTF-8

Ok, so here is my setup. I am working on a PHP application, which is on a linux OS. I am trying to pass data over to a Windows OS, into a SQL Server database. I am using Freetds to act as the provider ...
1
vote
1answer
324 views

DBI::Sybase data-conversion resulted in overflow

I am writing a Perl script that is using the DBI module and is connecting to a Sybase DB. I am calling a stored procedure (one that I don't have access to so I cannot post sample code) and when I get ...
1
vote
1answer
187 views

Alternatives to FreeTDS?

We're running a Linux server with Microsoft SQL Server for the database. Are there any good (preferably open source) c libraries that we could use other than FreeTDS? Thank you
1
vote
1answer
218 views

Bash script makes connection using FreeTDS, interacts, doesn't exit (just hangs)

I'm using FreeTDS in a script to insert records into a MSSQL database. TheUSEandINSERTcommands work, but theexitcommand doesn't and it hangs. I've tried redirectingstdoutbutcatcomplains. I suppose I ...
1
vote
3answers
844 views

unixODBC error “/usr/lib/libtdsodbc.so.0: wrong ELF class: ELFCLASS32”

I am working on a site where I need to import data from a remote MS SQL Server database into a MySQL database on a Unix server via PHP. Thanks to answers to this post, I was able to get everything up ...
1
vote
1answer
495 views

Why is there a “no such file or directory” error when the .so file does exist?

I'm trying to connect from Ruby 1.8.7 on RHEL 5 to MS SQL Server. I'm using FreeTDS and the tiny_tds RubyGem. I got it working fine on OS X. On Linux I installed FreeTDS and confirmed that it can ...
1
vote
1answer
269 views

unixODBC issue on a Django site on Linux that goes away on refresh

I have a question about Django, unixODBC, FreeTDS, Apache2, mod_wsgi, that is somewhat similar to this question asked before on SO. I have a Django website built to run on the latest Django, that is, ...
1
vote
1answer
599 views

Using typed bound parameters with PHP PDO-ODBC, unixODBC and FreeTDS

I'm using the following setup to access a MS-SQL database from a PHP application RedHat Enterprise Linux 5 PHP 5.2.14 with PDO and PDO_ODBC unixODBC 2.2.11 FreeTDS 0.82.1.dev.20100810 ...
1
vote
2answers
472 views

sqlalchemy date type in 0.6 migration using mssql

I'm connection to mssql server through pyodbc, via FreeTDS odbc driver, on linux ubuntu 10.04. Sqlalchemy 0.5 uses DATETIME for sqlalchemy.Date() fields. Now Sqlalchemy 0.6 uses DATE, but sql server ...
1
vote
2answers
417 views

FreeTDS runs out of memory from DBD::Sybase

When I add client charset = UTF-8 to my freetds.conf file, my DBD::Sybase program emits: Out of memory! and terminates. This happens when I call execute() on an SQL query statement that returns ...
1
vote
2answers
586 views

Django <-> SQL Server 2005, text encoding problem

I'm trying to store Django data on MS SQL Server 2005 using: http://code.google.com/p/django-pyodbc/ (pyodbc + FreeTDS) As long as I'm storing string consist of ASCII characters everything is ok. ...
0
votes
0answers
35 views

Escape character for strings in Sybase (TDS), from C

We are writing a C program (on Linux) which updates a text (or varchar) field in a Sybase database. We are using the freetds driver. Would anyone know how we must format the string to send, and what ...
0
votes
0answers
30 views

pyodbc/FreeTDS/unixODBC on Debian Linux: issues with TDS Version

I'm having a bit of trouble successfully using pyodbc on Debian Lenny (5.0.7). Specifically, I appear to be having trouble fetching NVARCHAR values (not a SQL Server expert, so go easy on me :) ). ...
0
votes
0answers
159 views

“Adaptive Server is unavailable or does not exist” error connecting to SQL Server from PHP

I'm attempting to connect to a SQL Server 2005 db from my Mac using unixODBC and FreeTDS as I have outlined here. However, when I try to connect in to a different db using the same setup, I get ...
0
votes
2answers
75 views

FreeTDS and SQL Server 2008?

I'm getting this when trying to connect to SQL Server 2008 using Moodle: 4004: Unicode data in a Unicode-only collation or ntext data cannot be sent to clients using DB-Library (such as ISQL) or ...
0
votes
2answers
52 views

Remote connect to SQL Server Standard Edition from PHP/FreeBSD

Unable to connect to our company MSSQL server from one of our FreeBSD servers. # telnet 192.168.1.51 1433 Trying 192.168.1.51... telnet: connect to address 192.168.1.51: Connection refused telnet: ...
0
votes
0answers
67 views

Compiling FreeTDS 0.91 on Ubuntu 11.04 x64

I'm working on a Python project that uses DSN-less connections with SQLAlchemy / pyodbc / unixODBC / FreeTDS to fetch data from a SQL Server database. Now I would like to set client charset directly ...
0
votes
1answer
170 views

FreeTDS - tsql connects, isql fails

I'm trying to connect to a database on my host machine (windows xp, sql server 05). My guest machine is Ubuntu 10.04. I can connect and execute commands with tsql, but isql fails. Below are my ...
0
votes
1answer
74 views

I can't make SQSH 2.1.7 with freetds 0.91

I am having trouble building sqsh against freetds. This post cross-references with https://sourceforge.net/projects/sqsh/forums/forum/365924/topic/4716627. I've installed Freetds 0.91 from ...
0
votes
1answer
128 views

Wrong character encoding from SQL Server to Rails 3 app on Linux via freetds

I'm developing an application on MacOS in Ruby 3.0 using SQL Server 2008 R2 as the database. I'm connecting through freetds and tiny_tds. When I save a data through a scaffold using extended ...
0
votes
3answers
114 views

unixODBC error IM001

I get the following error when trying to do any simple query. I just can't figure out what's changed. Here is an example of the sqlalchemy (Elixir) class: class Song(Entity): ...
0
votes
2answers
208 views

Freetds SQL Server connection error from PHP: Permissions?

I have a PHP script that makes a connection to a remote SQL Server. From the command line as root I can call the freetds command: tsql –H hostname –U username and it connects just great and I can ...
0
votes
1answer
88 views

Rails migration giving errors when using with MSSQL [MicroSoft SQL SERVER] - Cannot find data type primary_key

I am working on Rails 3 project where I initially used MySQL as RDBMS. But later my client requested that we should use MSSQL. After spending half a day, I am able to connect with the MSSQL server ...
0
votes
1answer
332 views

Problem installing tiny_tds gem in rails 3

I have succesfully installed free_tds on my mac and can use tsql to access the db and query tables. However when I try to use the gem tiny_tds gem on rails 3 I get the following error: Installing ...
0
votes
0answers
340 views

SQL Server / PHP, FreeTDS - Stored Procedure execution failed

I changed my code in this way becuase there was some errors, $sql = 'dbname.dbo.mySP'; $var = mssql_init($sql); mssql_bind($var, 'Param1', $param1, SQLVARCHAR, false, false, 40); //varchar ...
0
votes
2answers
313 views

SQL Server and Rails trouble

note: this is a repost. This question was previously deleted for undisclosed reasons Ok, I've been trying to get this to work like all day now and I'm barely any further from when I started. I'm ...
0
votes
2answers
239 views

Why won't my server connect to a remote MSSQL server using PHP mssql_connect?

I've had to move an app we wrote for a client to a new server and a remote connection I was initiating with PHP mssql_connect has ceased to work. I noticed that PHP wasn't compiled with mssql so I ...

1 2