0
votes
1answer
63 views
CakePHP and connecting to MS Access db using Unixodbc
I'm trying to use an Acces (MDB) database from a CakePHP app. On a Windows machine this works fine. On a Linux machine using Unixodbc this doesn't work at all. The error is as follows:
Warning (2): …
0
votes
0answers
18 views
UnixODBC driver support in OSX?
I'm working on a Rails application which I've set up locally on my OSX Machine. However, the app, which typically runs on a Linux box, connects to a proprietary database via unixODBC. The database …
0
votes
1answer
84 views
How to get the values of oracle database parameters from a unix development server?
How to get the fallowing details from the unix development server?
The below parameter values should be provided in the .dbc file
and it should be mapped to the ETL Server .
dbms:<br> …
1
vote
1answer
240 views
Connecting to MS SQL Server 2005 from Mac using Ruby, ODBC and FreeTDS
I'm having trouble connecting to a SQL Server 2005 install from this very simple Ruby app:
#!/usr/bin/env ruby
require 'rubygems'
require 'sequel'
Sequel.odbc('dev04')['select top 1 * from …
0
votes
3answers
113 views
Simplest way to access a DB2 database on iSeries from a Linux (ubuntu) machine?
I would like to run an SQL query on an iSeries (...or "System i" or "AS/400"...) machine as part of a Nagios check, but haven't found a suitable way of interfacing the database yet.
IBM suggests …
1
vote
1answer
127 views
Haskell, HDBC, ODBC, MySQL and Mac OS X
I'm trying to use Haskell (version 6.10.3) and HDBC to connect to a MySQL Database. I've chosen to do it with Haskell ODBC. I've used cabal to install HDBC (2.1.1) and HDBC-ODBC (2.1.0.0). I've …
3
votes
2answers
243 views
Microsoft SQL Server Statistics via ODBC
I have an instance of SQL Server that I am trying to benchmark. From the SQL Studio application I can type
SET STATISTICS TIME ON
and see outputted statistics after that. From C++ code, I can do …
0
votes
1answer
145 views
ODBC Connection to iSeries Giving Odd Number of Results
I'm using UnixODBC with PHP 5.2.4 on Ubuntu 8.04 LTS and trying to pull all the results from a table sitting on an iSeries and replicate them to a local MySQL table.
Code-wise it is working with no …
1
vote
4answers
1k 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 …
0
votes
1answer
758 views
DSN-less ODBC Connection to iSeries
I'm running PHP 5.2.4 with ibm_db2 v1.8.0 on Ubuntu 8.04.1 Server. I am trying to hit an IBM iSeries running OS/400 v5R3 but I'm not sure at all how to actually connect without a DSN. I've looked at …
0
votes
4answers
708 views
php + unixODBC + DB2 + DESCRIBE = token not valid?
Code I'm trying to run:
$query = "DESCRIBE TABLE TABLENAME";
$result = odbc_exec($h, $query);
The result:
PHP Warning: odbc_exec(): SQL error: [unixODBC][IBM][iSeries Access ODBC Driver][DB2 …
