14
votes
1answer
189 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.
…
7
votes
8answers
6k 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
9answers
8k 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 …
5
votes
1answer
649 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?
5
votes
8answers
1k 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 …
4
votes
2answers
161 views
Is there a database access library for C and/or C++ with a similar interface to Perl’s DBI?
I'm willing to write a subset of Perl's DBI interface for libodbc (or unixODBC) in C++.
I believe doing so will allow me concentrate better on my goal.
BTW, I prefer avoiding to reinvent the wheel, …
4
votes
2answers
907 views
MS Access 2003 + linked tables to SQL Server 2005 + Windows Authentication = slow
Our MS Access application with linked tables to SQL Server 2005 is slow when using Windows Authentication from Windows XP clients.
We've been running it successfully using SQL Server authentication, …
4
votes
3answers
454 views
Specify a default driver for ODBC
I have a legacy VB6 app which builds a DSN based on a parameter in a config file. The parameter is an ODBC connection, and the connection has a name (DSN-NAME) which maps a server (DBSERVER) to a …
4
votes
3answers
869 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 …
4
votes
5answers
1k 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 …
3
votes
3answers
350 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.
…
3
votes
2answers
247 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 …
3
votes
2answers
227 views
Why doesn’t Win32::ODBC find the ODBC.dll under Perl 5.10 and Cygwin?
I'm trying to use Perl ODBC to connect to a Microsoft SQL server. My problem is that Perl 5.10.0 is having a problem using the Win32 ODBC driver.
If I run a Perl shell and execute this one line, I …
3
votes
2answers
440 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? …
3
votes
3answers
6k views
How to refresh linked tables in an Access mdb when ODBC changes
I can create an Access mdb and add a linked table to an Sql Server database via ODBC. If I change the Sql Server that the ODBC is connecting to with the ODBC control panel applet the mdb still …
