Tagged Questions

Open Database Connectivity (ODBC) provides a standard software interface for accessing database management systems (DBMS).

learn more… | top users | synonyms

23
votes
5answers
32k views

Reverse Engineering for Database Diagramming in Visio with SQL Server 2008

I need to reverse engineer a Microsoft SQL Server 2008 in order to create a Microsoft Visio 2007 Database Model Diagram. So I choose Reverse Engineer from the Database menu to connect to the DB. I ...
15
votes
1answer
584 views

ODBC problems in SQL 2000 --> 2005 Upgrade

This wiki post outlines both a problem and a solution. I wanted to post this for others that may be having similar problems, as I couldn't find anything specifically to solve this problem elsewhere. ...
15
votes
6answers
15k views

Check if a SQL table exists

What's the best way to check if a table exists in a Sql database in a database independant way? I came up with: bool exists; const string sqlStatement = @"SELECT COUNT(*) FROM my_table"; ...
13
votes
5answers
329 views

The riddle of the working broken query

I was going through some old code that was written in years past by another developer at my organization. Whilst trying to improve this code, I discovered that the query it uses had a very bad ...
12
votes
6answers
456 views

ODBC prepared statements in PHP

I'm trying to use odbc_prepare and odbc_execute in PHP as follows: $pstmt=odbc_prepare($odb_con,"select * from configured where param_name='?'"); $res=odbc_execute($pstmt,array('version')); ...
12
votes
5answers
11k views

what is the difference between OLE DB and ODBC data sources?

I was reading a MS Excel help article about pivotcache and wonder what they mean by OLE DB and ODBC sources ...You should use the CommandText property instead of the SQL property, which now ...
11
votes
1answer
6k views

64 bit ODBC Exception

I am getting the following ODBC exception when I moved my development platform from Windows XP X86 to Windows 7 X64: ERROR [IM014] [Microsoft][ODBC Driver Manager] The specified DSN contains an ...
11
votes
8answers
12k views

How do I create an ODBC DSN entry using C#?

I'm working on a legacy application that has a C++ extended stored procedure. This xsproc uses ODBC to connect to the database, which means it requires a DSN to be configured. I'm updating the ...
10
votes
4answers
3k views

Common ways to connect to odbc from python on windows?

What library should I use to connect to odbc from python on windows? Is there a good alternative for pywin32 when it comes to odbc? What about pyodbc? http://code.google.com/p/pyodbc/ Any others? ...
8
votes
3answers
201 views

RODBC queries returning zero rows

Issue: RODBC (falsely) returning zero rows Situation: I'm using RODBC to connect to a DSN I created using a commercial DB's ODBC driver (OSI Soft's PI Historian Time Series DB, if you're curious). ...
8
votes
2answers
344 views

What is the problem with ODBC as a technology?

Recently Zed Shaw (a programmer who blogs) mentioned that ODBC references should be removed from the popular python book Dive into Python. I have never worked with ODBC and I just wanted to understand ...
8
votes
1answer
3k views

OLEDB v/s ODBC

What is the difference between OLEDB and ODBC? When do I use which and how do I know what I am looking at is a OLEDB driver v/s an ODBC driver?
8
votes
9answers
28k views

Need a row count after SELECT statement: what's the optimal SQL approach?

I'm trying to select a column from a single table (no joins) and I need the count of the number of rows, ideally before I begin retrieving the rows. I have come to two approaches that provide the ...
7
votes
1answer
8k views

PostgreSQL ODBC driver not showing up in Control Panel (Data Sources)

I installed psqlODBC and when I go to Control Panel -> Data Sources (ODBC) I don't see the Postgres driver installed. I rebooted, still nothing. I then noticed that if I launch this control panel ...
7
votes
3answers
4k views

Creating a custom ODBC driver

At my current job, we're looking to implement our own odbc driver to allow many different applications to be able to connect to our own app as a datasource. Right now we are trying to weigh the ...
6
votes
1answer
160 views

How do I access an MS Access database from Oracle?

Configured access from Oracle to MS Access. Oracle XE 11.2.0.2. Microsoft Access 2010 There are two INSERTS (insert into table that is residing in MS ACCESS db) operations. One of them is using ...
6
votes
4answers
273 views

MSSQL to MySQL data transfer

I am trying to transfer bulk data on a constant and continuous based from a MSSQL database to a MYSQL database. I wanted to use MSSQL's SSMS's replication but this apparently is only for MSSQL to ...
6
votes
2answers
232 views

How can I access an Oracle database via ODBC from R without making the password public?

This question is based on my attempt to create an application in R that can pull data in from a remote Oracle database via ODBC, but I doubt the answers will be R specific. I am trying to create an ...
6
votes
4answers
130 views

Can someone tell me what this means WriteLine(“{0,-12}”)

{0,-12} is the part i'm curious about.. I'm looking at this example Console.WriteLine("{0,-12} {1}", sqlReader.GetName(0), sqlReader.GetName(1)); ...
6
votes
1answer
17k views

How do I use a 32-bit ODBC driver on 64-bit Server 2008 when the installer doesn't create a standard DSN?

I ran into an issue with some third party software that we use to track software license usage in our computer labs. We recently migrated the app to 64-bit Server 2008 after receiving assurances from ...
6
votes
5answers
8k views

Excel ODBC and 64 bit server

using ASP.NET I need to update an excel template. Our server is running Windows 2008 in 64 bit mode. I am using the following code to access the excel file: ... string connection = ...
6
votes
3answers
5k views

How to programmatically configure an ODBC Datasource using C#

Is there any way to create a ODBC DSN with C#? Maybe a P/invoke?
6
votes
4answers
5k views

Using Rails 2.x with MS SQL Server 2005

Does anybody here have positive experience of working with MS SQL Server 2005 from Rails 2.x? Our developers use Mac OS X, and our production runs on Linux. For legacy reasons we should use MS SQL ...
6
votes
8answers
4k views

Connect PHP to an AS/400

I've got an upcoming project wherein I will need to connect our website (PHP5/Apache 1.3/OpenBSD 4.1) to our back-end system running on a iSeries with OS400 V5R3 so that I can access some tables ...
5
votes
3answers
293 views

Still get error popup even when ApplyUpdates is inside try…except

Solution found, see my comment below D5, odbc to mysql database This code: with QryCmdPerf do begin Close; ParamByName('ACCTID').AsInteger:= AcctId; ParamByName('FROMDT').AsString:= ...
5
votes
5answers
378 views

Why won't my code segfault on Windows 7?

This is an unusual question to ask but here goes: In my code, I accidentally dereference NULL somewhere. But instead of the application crashing with a segfault, it seems to stop execution of the ...
5
votes
3answers
847 views

Check if a table exists, and if not, create it

I'm using a Odbc connection to a mysql server, and was wondering how I would go about checking if a table exists within my database, and if not, create it.
5
votes
2answers
1k views

C++ Access to SQL Server from Linux

I need to write some data to SQL Server database from Linux in C++. I found this sqlapi.com But I think, at first ODBC driver has to be installed and has to work. I folowed this ...
5
votes
4answers
855 views

Is there a NoSQL / key-value store abstraction library like there is JDBC is for databases?

I have used many SQL abstraction libraries, such as ODBC, JDBC, and ActiveRecord. What are the abstraction options in the NoSQL / key-value store world? I am mostly asking this so that if I choose a ...
5
votes
3answers
959 views

What is the difference between ODBC and OleDB?

I found this question here: http://stackoverflow.com/questions/271504/oledb-v-s-odbc Which gave me more information, but did not really answer the question I'm asking, so I shall proceed from there. ...
4
votes
1answer
99 views

Encrypting SQLite database in Delphi OLEDB

How to use encryption to SQLite DB in Delphi if i'm using SQLite ODBC Driver. I must use ADO components for data access.
4
votes
1answer
54 views

“System resource exceeded” during connection to Access file through Java jdbc odbc

I've read all "System resource exceeded" posts, but this is nothing like them. I've spend the last 3 hours searching for a solution. I don't have many connections / statements / resultsets and I ...
4
votes
1answer
233 views

Strange Oracle error: Identifier too long ORA-00972

I have faced this problem when working with ORACLE 10g. I read the answers given to this question here (ora-00972 identifier is too long oracle 10g) on stack overflow but they have not worked for me. ...
4
votes
1answer
185 views

Get the list of ODBC data source names programatically using Delphi

I saw several examples where the list of the source names were took from registry (HKEY_LOCAL_MACHINE\Software\ODBC\ODBC.INI\ODBC Data Sources). Is there any other way to get the list of ODBC data ...
4
votes
2answers
204 views

Distributed transactions between MySQL and MSSQL

I've tried for nearly a week now to get distributed transactions working. I've some procedures on MSSQL which try to select data from MySQL. My need is to do this in one(!) transaction. At the time ...
4
votes
2answers
116 views

How to connect to a MySQL database inside the .NET framework?

I'm opening a discussion here on a subject I couldn't find any answer good enough to be called a final answer: MySQL and .NET. While I know there is a lot of ways to make this connection, I'm trying ...
4
votes
2answers
258 views

Postgres query over ODBC a order of magnitude slower?

We have an application which gets some data from a PostgreSQL 9.0.3 database through the psqlodbc 09.00.0200 driver in the following way: 1) SQLExecDirect with START TRANSACTION 2) SQLExecDirect with ...
4
votes
1answer
273 views

Ruby Rails Mongrel Server ODBC connection reset

I am currently running ruby on rails (ruby 1.8.7, rails 2.3.8) on a windows 2008 server in IIS7. I am using mongrel rails to run the instances and then adding the instances to a server farm in IIS7 to ...
4
votes
3answers
1k views

Java: cannot update Excel using JDBC ODBC

I can read rows/columns just fine, but I can't update, insert or delete. try{ Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); String myDB = "jdbc:odbc:Driver={Microsoft Excel ...
4
votes
2answers
818 views

Multiple insert statements in single ODBC ExecuteNonQuery (C#)

I'm inserting multiple rows into a DB, and joining them together in an attempt to improve performance. I get an ODBCException telling me my SQL syntax is wrong. But when I try it in the mysql ...
4
votes
1answer
269 views

Creating Database at run time and registering it as DSN at run time

I am trying to create an ACCESS DB at run time and register is as a DSN in ODBC.ini using the following code: BOOL fCreated; fCreated = SQLConfigDataSource(NULL,ODBC_ADD_DSN, "Microsoft ...
4
votes
3answers
366 views

Alternatives to writing an ODBC driver

We are storing allot of time series data into our own proprietary "database". In the next version of our system we want to give our users a simple query mechanism to extract the raw data from the ...
4
votes
5answers
261 views

SQL Server 2008: should I be using Windows auth or SQL Server auth?

I have an MS-Access 2007 front end. I will have multiple users on it. They are all going to be on the network company domain. Should I be using Windows authentication or SQL Server authentication to ...
4
votes
2answers
1k views

how do i retrieve data from SQLite to VB6?

i am using SQLite3 ODBC Driver as my connection string, Dim conn As ADODB.Connection Set conn = New ADODB.Connection Dim rs As New ADODB.Recordset Set conn = New ADODB.Connection ...
4
votes
7answers
2k views

Oracle (0x80004005)ORA-12154: TNS:could not resolve the connect identifier

I'm trying to connect to an oracle db from an ASP classic application, however I keep running into the ORA-12154 error. TNSNAMES.ORA is configured properly DBSOURCE.A.B.com = (DESCRIPTION = ...
4
votes
4answers
1k views

“String data, right truncation” warning on a select statement

I am upscaling an access 2003 database to SQL Server Express 2008. The tables appear to be created ok and the data looks ok. I have an MFC application that connects to this database. It worked fine ...
4
votes
2answers
207 views

ODBC vs MySQLClient

I'm currently using ODBC to connect to my MySQL database, using C#. I've been told that using the MySql Connector would be better, and faster, and not dependent on Windows. Can someone shed some ...
4
votes
0answers
190 views

What is the correct connection string for clsql when accessing ms sqlserver using odbc? [closed]

I am accessing a database on another machine from an OS X server. After setting up freetds through macports and creating the freetds.conf file like so: dump file = /tmp/freetds.log # nunb our ...
4
votes
2answers
5k views

Simplest Way to Test ODBC on WIndows

With unixODBC you can use a simple command line utility called "isql" to test your connection and permissions of some queries. Without having to write extra code or install libs is there a simple way ...
4
votes
2answers
846 views

BDE, Delphi, ODBC, SQL Native Client & Dead lock

We have some Delphi code that uses the BDE to Access SQL Server 2008 through the SQL Server Native Client ODBC driver (2005 version). Our issue is that we're experiencing some deadlock issues in a ...

1 2 3 4 5 31