2
votes
2answers
110 views
Have you ever had this error?
microsoft visual studio opens my table using dataset designer
but i cannot open my table using the same connectionstring.
my database is DBase IV.
and this is the connectionstring
…
0
votes
5answers
65 views
what are the various other programs using which i can connect to odbc database besides ms-access.
what are the various other programs using which i can connect to odbc database besides ms-access.
i'm talking about programs in which i can run sql queries. i dont want to use ms-access because the …
1
vote
4answers
73 views
SQL find next record by non-unique field
I need to find the next record in a database with (say) a given Surname. So if the user is looking at A Smith, the query would return either the Next A Smith, or B Smith
the solution is probably …
1
vote
3answers
85 views
How do I access a SQL Server database from a Perl script in Linux?
I have a Perl script on a Linux (Ubuntu 8.10) machine and I need to write data to a SQL Server Database. I've been trying to use the DBD::ODBC module but I can't get it to connect. Where can I get a …
0
votes
1answer
17 views
CRecordset.Open only retrevies one record!
Here is the code:
CDatabase m_db;
m_db.OpenEx(_T( "DRIVER={MySQL ODBC 3.51 Driver};SERVER=localhost;DATABASE=mydb;UID=root;PASSWORD=123123;OPTION=3;"), FALSE );
CRecordset recSet(&m_db);
…
0
votes
3answers
64 views
Perl DBD::ODBC Issues with Oracle Date Formats
I am using Perl's DBD::ODBC to connect to an Oracle database. However, an issue arises when I try to execute a select query using a date in the where clause. It seems this issue occurs because of …
0
votes
1answer
33 views
Am I opening and closing my ODBC connection incorrectly?
Hello,
When connecting to a Sybase ASE database via ODBC using the code below, I'll occasionally get a '[IM006] [Microsoft][ODBC Driver Manager] Driver's SQLSetConnectAttr failed' error.
Can this …
0
votes
2answers
20 views
Connecting to SOTAMAS90 ODBC ?
How do I connect to Mas90's file using their ODBC that they setup - SOTAMAS90? how do I do this in vb.net ?
1
vote
7answers
172 views
Closing ODBC connection doesn’t write Excel file
LS,
Basically my code opens a connection to the Excel file, performs an UPDATE query, and closes the connection again.
When I execute a SELECT on the file, and output it, it does reflect the updated …
0
votes
2answers
34 views
[SQL Server 2005] How to create Linked Server targeting remote ODBC?
I have a WebTrends ODBC source on server1 and a SQL Server 2005 on server2. I want to connect to this ODBC from SQL Server on server2. So far, I managed to connect to this ODBC from SQL Server which …
0
votes
1answer
14 views
ODBC iterate table without storing in memory
Hi,
I need to have a way to iterate through a database table without actually storing it in memory anywhere. I want to essentially read through the rows like an input iterator.
I've tried using …
2
votes
3answers
36 views
How to Inspect ODBC communication, to see the SQL being passed through?
Is there a tool for windows that we can use to inspect any SQL commands that go through a particular ODBC data source?
0
votes
1answer
22 views
Using 4-part naming to do insert to DB2 from SQL Server 2005?
Hello,
We're using DB2 9.1 on Linux and SQL Server 2005, and the IBM db2 odbc driver. We have a linked server set up to DB2. From SQL Server, I can do the following:
-- I can create the new table …
2
votes
12answers
224 views
Select uniques, and one of the doubles
I have a table with columns A, B and C.
Column A might have duplicates.
I need a query that will get me a resultset with unique values in column A, and I don't care which possible duplicate it takes.
…
0
votes
3answers
74 views
T-SQL stored procedure returns null in code, but works in console
I have a stored procedure
CREATE procedure [dbo].[get_unique_identifier]
AS
DECLARE @ret_val INT
UPDATE seq SET @ret_val = id = id + 1
RETURN @ret_val
that queries a table (seq) that has a single …
