active questions tagged odbc - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T23:32:39Zhttp://stackoverflow.com/feeds/tag/odbchttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1791089/not-your-usual-mysql4-odbc-connection-issue0Not your usual MySQL4 + ODBC connection issue...Logos2009-11-24T16:11:17Z2009-12-04T14:12:19Z
<p>I've got a problem with ODBC that has me stumped, and I can't find an answer anywhere that addresses my problem. Short version: I can't connect to my MySQL4 installation on Ubuntu Jaunty from my WinXP ODBC System DNS, even tho I can connect just fine using the command line client both on that particular machine and others. </p>
<p>Huge amount of details starts here!</p>
<p>I have a standard MySQL5 install on Ubuntu Jaunty 9.04. I manually installed MySQL4 from precompiled binaries in /usr/local/mysql4. Here's the startup command:</p>
<p>/usr/local/mysql4/bin/mysqld_safe --user=mysql4 --port=3307 --socket=/var/run/mysql4d/mysql4d.sock --basedir='/usr/share/mysql4/' --datadir='/var/lib/mysql4/' --log-error='/var/log/mysql4.err' --log='/var/log/mysql4.log' --language='/usr/local/mysql-standard-4.1.22-pc-linux-gnu-i686-glibc23/share/mysql/english' &</p>
<p>This seems to work quite well. I have no problems connecting using the mysql client from either localhost or from a remote machine over TCP/IP:</p>
<p>mysql -u inContact -h myhost.com --password='blah' --port=3307 </p>
<p>On this same server, I have virtualbox running XP Pro. I can also connect no probs using mysql on the command line from it. However, using the same settings for the ODBC system DSN don't work. I get the message "Host 'myhost.com' is not allowed to connect to this MySQL server".</p>
<p>The only message I'm seeing about it is in mysql4.log:</p>
<p>091124 10:56:50 5 Connect inContact@myhost.com on inContact</p>
<p>Anyone have some insight? I'm totally at a loss here...</p>
http://stackoverflow.com/questions/1050539/free-open-source-dataease-provider0Free/Open Source DataEase providerBrett Veenstra2009-06-26T18:26:25Z2009-12-03T20:04:19Z
<p>Anyone know of a free/open source OLEDB/ODBC/JDBC driver against <a href="http://www.dataease.com/" rel="nofollow">DataEase</a>?</p>
http://stackoverflow.com/questions/1563720/sqlserver-data-in-php-loses-multibyte-characters0SQLServer data in PHP loses multibyte charactersweotch2009-10-14T00:41:44Z2009-12-03T20:00:03Z
<p>I have PHP talking to SQLServer through ODBC using FreeTDS and unixODBC. I followed <a href="http://kb.mediatemple.net/questions/233/Using+%28remote%29+MS-SQL+databases+with+PHP+on+a+%28dv%29" rel="nofollow">tutorials</a> to get this setup. It's working fine now although special characters in the database are not showing up correctly. Specifically, the ™ symbol. It's showing up in the browser as �. I've tried setting <code>client charset = UTF-8</code> in the [global] section of freetds.conf. I've tried <code>iconv('UCS-2', 'UTF-8', $str)</code> and <code>mb_convert_encoding($str, 'UTF-8', 'UCS-2')</code> within PHP and both result in asian character sets (<code>䐧祲圠攮戮餮吠渭捥❫</code>). I'm stumped! Anyone have any tips?</p>
<p>One other element that bears mentioning: When I run this code on my local machine, I don't have these issues. The ™, for example, shows up fine. My local machine is a mac and I'm using <a href="http://www.actualtechnologies.com/" rel="nofollow">Actual Technologies ODBC driver</a>. Where I'm having trouble is our LAMP webserver. This leads me to believe that problem lies in the driver configuration. Or possibly linux as whole needs to be informed of UTF-8?</p>
http://stackoverflow.com/questions/1822359/how-to-inspect-odbc-communication-to-see-the-sql-being-passed-through2How to Inspect ODBC communication, to see the SQL being passed through?Roberto Sebestyen2009-11-30T21:00:18Z2009-12-03T02:48:53Z
<p>Is there a tool for windows that we can use to inspect any SQL commands that go through a particular ODBC data source?</p>
http://stackoverflow.com/questions/1796242/t-sql-stored-procedure-returns-null-in-code-but-works-in-console0T-SQL stored procedure returns null in code, but works in consoledandan782009-11-25T11:10:30Z2009-12-02T22:14:26Z
<p>I have a stored procedure</p>
<pre><code>CREATE procedure [dbo].[get_unique_identifier]
AS
DECLARE @ret_val INT
UPDATE seq SET @ret_val = id = id + 1
RETURN @ret_val
</code></pre>
<p>that queries a table (seq) that has a single int column and single row, increments the value and then then returns it. Don't ask why I'm doing this, but in short, the idea is to simulate a PostgreSQL sequence and no, an identity column would not do the job. Anyway, this works fine in SQL Management Studio, where sequential executions of </p>
<pre><code>DECLARE @returned INT
EXEC @returned = get_unique_identifier
SELECT @returned
</code></pre>
<p>produce the expected output. Unfortunately, I can't seem to get the returned value in the application I'm working on</p>
<pre><code>OdbcCommand command = new OdbcCommand("get_unique_identifier");
command.CommandType = CommandType.StoredProcedure;
OdbcParameter return_param = new OdbcParameter("@RETURN_VALUE", OdbcType.BigInt);
return_param.Direction = ParameterDirection.ReturnValue;
command.Parameters.Add(return_param);
Util.SQLExecuteParameterizedNonQuery(command);
Console.WriteLine(command.Parameters["@RETURN_VALUE"].Value.ToString());
</code></pre>
<p>The output is an empty string, but the value itself is <code>DBNull.Value</code>. The <code>OdbcType.BigInt</code> is left over from some testing I was doing. It was initially <code>Int</code>.</p>
<p><b>Edit:</b> This is clearly a bug with ODBC. A workaround is posted below. Don't use ODBC if you don't have do.</p>
http://stackoverflow.com/questions/1222823/problem-connecting-reporting-services-2005-to-progress-openedge-10-2a-driver0Problem connecting Reporting Services 2005 to Progress OpenEdge 10.2A DriverManuel A. Rodriguez2009-08-03T14:57:48Z2009-12-02T11:56:36Z
<p>Background:
Progress based ERP system called QAD 2008.1 (formerly MFGPRO.
SQL Server 2005 Enterprise SP2.
Reporting Services 2005 SP2.
Progress OpenEdge 10.2A Driver.
ODBC System DSN created using the Progress OpenEdge 10.2A Driver.</p>
<p>Problem:
I am creating a report with Reporting Services and will need to use the Progress OpenEdge 10.2A driver as a data source view.</p>
<p>The error is the following: Error [HY000] [DataDirect][ODBC Progress OpenEdge Wire Protocol driver] Insufficient information to connect to the data source.</p>
<p>Yet the ODBC connection is created correctly and connects succesfully?!!?</p>
<p>I cannot create the data source view at all. I have checked on the Progress, DataDirect and OpenLink forums and have found nothing!</p>
<p>I appreciate your effort and help with this question. Thank you very much in advance.</p>
http://stackoverflow.com/questions/1832330/reading-unicode-data-from-db2-via-ado-and-odbc0Reading Unicode data from DB2 via ADO and ODBCkaeff2009-12-02T11:24:50Z2009-12-02T11:24:50Z
<p>From my application written with Delphi 2009, I am reading from and writing to an IBM DB2 database using ADO, the ODBC Provider for ADO, and ODBC:</p>
<p>Application -> ADO (Win32) -> ODBC-Provider for ADO -> ODBC -> (net) -> DB2 (Windows)</p>
<p>Now, my application need to store unicode data. So I set my database codepage to UTF-8. Delphi handles strings in UTF-16 internally and passes them as multi-byte-characters to COM. So I should be fine on encoding on the application's side. </p>
<p>Inserting non-ansi-chars in a VARCHAR db field works fine, they are displayed correctly by the DB2 management console (which is a Java application using, I figured, JDBC). In my application (or any other test application I wrote that uses ADO queries), I get only a sequence of #$1A bytes for VARCHAR fields with unicode characters in them.</p>
<p>Strangely, the same application works fine if the backend is a Microsoft SQL database. Retrieving ANSI-compliant character strings also isn't a problem for DB2.</p>
<p>In the DB2 documentation it says that the DB2 ODBC drivers responds with unicode characters if an application calls the suffix-W ODBC APIs. Is it possible that under certain circumstances the ODBC Provider for ADO doen't trigger those functions but instead uses the ANSI functions? I tried setting a client codepage in the ADO connection string and the ODBC driver settings without success, although I could've done that the wrong wav.</p>
http://stackoverflow.com/questions/1761583/update-array-field-in-progress-db-using-odbc0Update Array field in progress DB using ODBCTerry Zeng2009-11-19T07:46:39Z2009-12-01T21:34:20Z
<p>Dear All:</p>
<p>I access the progress DB using ODBC in my C# program,
and I need to update some fields,which are array data type.
so how can I write my sql statement to do such things?</p>
<p>I read some progress documentations,in which some methods were mentioned as bellow:
update pub.sometable set arrayfield='X;X;X;X;X;X' where condition....
but it only works on the unsubscripted array.well,another problem,what's the difference between unsubscripted arrays and subscripted ones?</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1786451/closing-odbc-connection-doesnt-write-excel-file1Closing ODBC connection doesn't write Excel fileMatthias Vance2009-11-23T22:18:37Z2009-12-01T12:38:11Z
<p>LS,</p>
<p>Basically my code opens a connection to the Excel file, performs an UPDATE query, and closes the connection again.</p>
<p>When I execute a SELECT on the file, and output it, it <em>does</em> reflect the updated data, but when I close the connection and send the file to the user, it doesn't have the data in it.</p>
<p>It seems that the data is written after the script is fully finished, because the (remote) file is correct after the request.</p>
<p>Kind regards,</p>
<p>Matthias Vance</p>
<p><strong>Edit:</strong></p>
<pre><code>// Pseudo code
$excel = new Excel($path);
$excel->query("SELECT $columnNames, '' AS newCol1, '' AS newCol2 INTO [$newFile].[newSheet] FROM [$sheet]);
$excel->close();
$excel = new Excel($newFile);
$excel->query("UPDATE [newSheet] SET newCol1 = 'x'");
$excel->close();
</code></pre>
http://stackoverflow.com/questions/1823465/quickbooks-sql-dump-code-from-qodbc0Quickbooks SQL dump Code from QODBCrafaelochoa2009-12-01T01:20:24Z2009-12-01T01:20:24Z
<p>Hello, I need to extract Quickbooks SQL structure to make a Diagram about the tables that I need to work with. Could this be possible ?
I think QODC could solve my connection issue but I don't know how to extract SQL dump from it.</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1769931/select-uniques-and-one-of-the-doubles2Select uniques, and one of the doublesMatthias Vance2009-11-20T11:38:25Z2009-11-28T13:10:32Z
<p>I have a table with columns A, B and C.
Column A might have duplicates.</p>
<p>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.</p>
<p>I don't know anything beforehand about the rest of the data.</p>
<p>An example might be:</p>
<pre><code>A B C
1 8 8
1 7 7
2 10 10
</code></pre>
<p>In this case I'd want to select:</p>
<pre><code>A B C
1 x x
2 10 10
</code></pre>
<p>x = It doesn't matter which value it would pick.</p>
<p>Kind regards,</p>
<p>Matthias Vance</p>
<p><strong>Edit</strong></p>
<p>I thought I found my solution with:</p>
<pre><code>SELECT * FROM (
SELECT * FROM test GROUP BY a
) table_test;
</code></pre>
<p>But that wasn't working after all.</p>
<p>This will result in:</p>
<pre><code>[Microsoft][ODBC Excel Driver] Cannot group on fields selected with '*'
</code></pre>
http://stackoverflow.com/questions/1809488/guid-primary-keys-and-access-front-end0GUID primary keys and Access Front EndQuintus Marais2009-11-27T15:55:05Z2009-11-27T15:55:05Z
<p>I have a SQL server database with several tables that have GUIDs for primary keys that are automatically generated by SQL newID default value. (I don't want to get into a debate on the pro's and cons of that, that is just how it has to be for now). I am trying to create a basic front end to that in Access (2010 - but the issue seems to occur in 2007 as wel). I link to the SQL Server db using ODBC.</p>
<p>When I add a new record into the table using Access ODBC linked table I get an error message "No Current Record" and the whole table (all rows) displays #name?. Refreshing or requerying does not fix the problem, you have to close the table and open it again to get it working. The record that is added is successfully saved and usable in the table.</p>
<p>Any suggestions on how i might fix this.</p>
http://stackoverflow.com/questions/868680/options-to-replicate-microsoft-sql-server-database-to-mysql-postgresql-on-linux1Options to Replicate Microsoft SQL Server Database to MySQL/PostgreSQL on Linuxandrew2009-05-15T13:30:13Z2009-11-27T01:49:51Z
<p>I need to replicate data from Microsoft SQL Server to MySQL or PostgreSQL. The data includes images stored in BLOB columns.</p>
<p>Could you please comment on your experiences with the following strategies and suggest others I may have missing?</p>
<ol>
<li>custom script written in Java using JDBC</li>
<li>linux odbc driver with perl script</li>
<li>Setup my own windows box and use SSIS or DTS w/Postgres ODBC driver</li>
<li>write .net program and schedule execution on Windows machine</li>
<li>FreeTDS</li>
</ol>
http://stackoverflow.com/questions/1378554/simplest-way-to-access-a-db2-database-on-iseries-from-a-linux-ubuntu-machine0Simplest way to access a DB2 database on iSeries from a Linux (ubuntu) machine?Anders Lindahl2009-09-04T11:00:49Z2009-11-25T17:19:41Z
<p>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. </p>
<p>IBM suggests using the ODBC driver of <a href="http://www-03.ibm.com/systems/i/software/access/linux/" rel="nofollow">System i Access for Linux</a> with <a href="http://www.unixodbc.org/" rel="nofollow">unixODBC</a>, but since both systems are new to me, I'd like to know if there are other ways of doing this.</p>
<p>Hacks involving <code>telnet</code> and <code>expect</code> are perfectly fine. :-)</p>
http://stackoverflow.com/questions/1792034/create-mysql-odbc-connection-through-batch-script0create mysql odbc connection through batch scriptJPro2009-11-24T18:37:08Z2009-11-24T18:47:38Z
<p>Hi,</p>
<p>Is there anyway to create a System DSN enter for MYSQL database (windows OS), with silent installation of MySQL ODBC Drivers programatically either through batch script or any other language?</p>
<p>If drivers installation is not possible , atleast automatic DSN entery would be helpful.</p>
<p>Thanks,</p>
http://stackoverflow.com/questions/607602/how-do-i-override-the-sql-for-a-crecordset-and-then-requery0How do I override the SQL for a CRecordSet and then requery?railsmail2009-03-03T18:40:26Z2009-11-24T10:00:03Z
<p>I have a CRecordSet (Visual C++ 6.0) and I'm using ODBC to connect to postgresql 8.0.8.</p>
<p>__</p>
<p>The problem: I insert a row into a table with a serial id (autoincrement), and I would like to retrieve the id after my insert.</p>
<p>I can't use the RETURNING keyword, not supported on this version of PGsql, but I can use currval('sequence').</p>
<p>However, in my code, I need to execute the default query and then override it to execute the query with currval().</p>
<p>From what I understand, I can only override the query by calling CRecordSet::Open() again, which would create a new session, rendering currval() useless.</p>
<p>__</p>
<p>So: How can I override the SQL, then execute this new query via a Requery() and not via Open()?</p>
http://stackoverflow.com/questions/1788420/mysql-odbc-connection-problem0MySql / Odbc connection problemIngvald2009-11-24T07:23:02Z2009-11-24T07:35:04Z
<p>I'm accessing a MySql database via ODBC. It normally works fine, but if the database is stopped and restarted I have to restart my application in order to reconnect to the database.</p>
<p>The code for accessing the database is like this:</p>
<pre><code> OdbcConnection connection = new OdbcConnection(connectString);
OdbcCommand command = connection.CreateCommand();
command.CommandType = CommandType.Text;
command.CommandText = "select * from cds";
OdbcDataAdapter dataAdapter = new OdbcDataAdapter(command);
DataSet dataSet = new DataSet();
connection.Open();
dataAdapter.Fill(dataSet);
connection.Close();
</code></pre>
<p>After a restart of the database, I get a 'MySql server has gone away' exception in dataAdapter.Fill method. Is
there any way I can reconnect to the database when I detect that the connection has broken?</p>
<p>I use VS2008 and MySql 5.1.30.</p>
http://stackoverflow.com/questions/1724415/filemaker-getas-how-to-display-container-field-on-webpage0Filemaker GetAs...How to display Container Field on webpage?TexasT2009-11-12T18:38:27Z2009-11-23T21:04:30Z
<p>I have an ASP.Net application that needs to display an image that is stored in a Filemaker Container field. My query statement looks like:</p>
<p>select GetAs(Image, 'JPG') from UA_Item_Pictures where "Stock Number"=33989 and ImageOrder=1</p>
<p>According to the documentation:
The possible file types (case sensitive) you can retrieve from a container field in a FileMaker database file are:
'EMBO'
OLE container data</p>
<p>'PDF '
Portable Document Format</p>
<p>'EMF+'
Windows Enhanced Metafile Plus</p>
<p>'PICT'
Mac OS (does not have 512-byte file-based header)</p>
<p>'EPS '
Embedded PostScript</p>
<p>'PNGf'
Bitmap image format</p>
<p>'FILE'
Result of an Insert File command</p>
<p>'PNTG'
MacPaint</p>
<p>'FPix'
Flash (FPX)</p>
<p>'qtif'
QuickTime image file</p>
<p>'FORK'
Resource fork (Mac OS)</p>
<p>'.SGI'
Generic bitmap format</p>
<p>'GIFf'
Graphics Interchange Format</p>
<p>'snd '
Standard sound (Mac OS raw format)</p>
<p>'JPEG'
Photographic images</p>
<p>'TIFF'
Raster file format for digital images</p>
<p>'JP2 '
JPEG 2000</p>
<p>'TPIC'
Targa</p>
<p>'META'
Windows Metafile (enhanced)</p>
<p>'XMLO'
Layout objects</p>
<p>'METO'
Windows Metafile (original)</p>
<p>'8BPS'
PhotoShop (PSD)</p>
<p>'moov'
Old QuickTime format (Mac OS)</p>
<p>So with this information, my questions are:<br>
1) How do I retrieve contents with multiple formats?
2) How do I render the BLOG into an image on the page?</p>
<p>Any suggestions would be much appreciated!</p>
http://stackoverflow.com/questions/1785600/add-2-extra-columns-to-an-excel-file0Add 2 extra columns to an excel fileMatthias Vance2009-11-23T20:06:26Z2009-11-23T20:32:07Z
<p>LS,</p>
<p>Since the Microsoft ODBC Excel Driver doesn't support ALTER TABLE/DELETE FROM(/UPDATE?) statements, I'm using alternative ways of getting the right data in the right place.</p>
<p>I still have one problem with getting 2 columns added to an excel sheet.</p>
<p>Someone told me to use:</p>
<pre><code>SELECT *, newcol1, newcol1 INTO newExternalSheet FROM thisSheet;
</code></pre>
<p>This doesn't work, since the driver complains about non-existant columns. Well, it doesn't exactly tell me that, but it gives some vague error message about parameters missing.</p>
<p>Believe me, there are no parameters missing, it also gives that error message for this kind of situations.</p>
<pre><code>SQL error: [Microsoft][ODBC Excel Driver] Too few parameters. Expected 2.
</code></pre>
<p>I hope you can help me out with this.</p>
<p>Kind regards,</p>
<p>Matthias Vance</p>
http://stackoverflow.com/questions/1780480/tracking-sql-calls-from-ms-access-to-mysql0Tracking SQL Calls From MS Access to MySQLmaxhugen2009-11-23T00:00:48Z2009-11-23T16:33:57Z
<p>I'm trying to 'see' the SQL statements that are sent from MS Access 2003 to MySQL via ODBC.</p>
<p>I've tried ODBC Tracing, but it's painfully slow, producing very large log files which are very difficult to read.</p>
<p>For example, and insert looked like this:</p>
<pre><code>"INSERT INTO `tracking` (`contract_id`,`bp_id`,`csi_1`,`csi_2a`,`csi_2b`,`csi_code`,`item_number`,`csi_code_display`,`csi_name`)
VALUES (?,?,?,?,?,?,?,?,?)\ 0"
</code></pre>
<p>It doesn't show the values, I think they are coded separately as SQLBindParameters, but I can't make out the values in those either.</p>
<p>Is there an alternate/better method that I can use to simply see the full SQL statements?</p>
<p>MTIA</p>
http://stackoverflow.com/questions/1703811/jet-engines-query-optimization-is-based-on-statistics-but-how-are-they-refreshe0Jet Engine's query-optimization is based on statistics, but how are they refreshed with linked tables?Ice2009-11-09T21:06:28Z2009-11-22T09:18:25Z
<p>Hi there, </p>
<p>i am dealing with some legacy access < 2007 "databases". All the tables are linked tables to a SQL Server 2008. While the odbc-links are established the table structure is copied into the mdb-file together with the DSN-string. Thats what one can see in Msysobjects.</p>
<p>A query forces the jet-engine to retrieve the data from SQL Server under respect of the jet-engines optimization. Therefore it is essential to refresh the odbc-links whenever a change in sql server is made, like adding a new index par example too.</p>
<p>As some tables grow larger the jet-optimizer needs refreshed statistics but which process does that? Is it Repair & Compact or refreshing the ODBC-Links? Can this be done programatically?</p>
<p>Peace</p>
<p>Ice</p>
http://stackoverflow.com/questions/1490999/can-i-make-a-dsn-less-connection-using-pyodbc-and-mdbtools0Can I make a DSN-less connection using pyodbc and mdbtools?gs2009-09-29T07:01:45Z2009-11-20T09:33:38Z
<p>I've tried the following:</p>
<pre><code>>>> import pyodbc
>>> cnxn = pyodbc.connect(Driver="MDB", database="SohabeD51.mdb")
pyodbc.Error: ('08001', '[08001] [unixODBC]Could not find DSN in
connect string (1) (SQLDriverConnectW)')
</code></pre>
<p>Connecting to a database using a DSN entry works fine, but I'd like to supply a database in the code.</p>
http://stackoverflow.com/questions/1751418/placeholders-using-generic-odbc-drivers0Placeholders using generic ODBC driversCheeseConQueso2009-11-17T20:07:51Z2009-11-20T06:17:47Z
<p>Currently, I'm peppering form submissions to account for single quotes & other garbage.</p>
<pre><code> $form_field_value= str_replace("'", "''", stripslashes($form_field_value));
</code></pre>
<p>It is to prep the value for insertion using:</p>
<pre><code> $insert_sql = "insert into table (field) values ('".$form_field_value."')";
odbc_exec($conn, $insert_sql);
</code></pre>
<p><hr></p>
<p>Essentially, I want to use placeholders for these insert/update statements.</p>
<p>I tried defining <code>$par1</code> and <code>$par2</code> as literals and then executing this</p>
<pre><code>$insert_sql = "insert into table (field,txt) values (?,?)";
odbc_exec($conn, $insert_sql, $par1, $par2);
</code></pre>
<p>It failed and gave me this error:</p>
<p>Warning: odbc_exec() [function.odbc-exec]: SQL error: [Microsoft][ODBC SQL Server Driver]COUNT field incorrect or syntax error, SQL state 07001 in SQLExecDirect in test.php on line 10</p>
<p>Line 10 is the exec statement.</p>
<p><hr></p>
<p>I can't find syntax for using placeholders with this odbc driver. Any suggestions?</p>
<p>The <code>$conn</code> connection variable is working fine.</p>
<p><hr>
<b>EDIT:</b></p>
<p>Last attempt still failing - odbc_execute() is an undefined function. I have to use odbc_exec()</p>
<pre><code>$par1="eggs";
$par2="milk";
$insert_crs = "insert into table (field,txt) values (?,?)";
$stmt = odbc_prepare($conn, $insert_sql);
odbc_exec($stmt, array($par1, $par2));
</code></pre>
http://stackoverflow.com/questions/1762881/how-to-sort-out-mysql-odbc-connection-strings-stored-in-registry-as-plain-text1how to Sort out Mysql odbc connection strings stored in registry as plain text Jason2009-11-19T12:14:00Z2009-11-19T12:47:20Z
<p>Mysql odbc connection string is stored in the windows registry as plain text. So someone can find it and view my database. </p>
<p>How can I sort out this security problem.</p>
<p>thanks </p>
http://stackoverflow.com/questions/1752548/probably-simple-sql-server-cursor-question1(Probably) Simple SQL Server cursor questionweotch2009-11-17T23:13:07Z2009-11-18T17:24:27Z
<p>I need to call two stored procedures in sequence via ODBC in PHP:</p>
<pre><code>#run stored procedure 1
$query = "Shipped_Not_Shipped_Rep ".$_GET['rep_id'];
$result = odbc_exec($dbh, $query);
odbc_result_all($result);
#run stored procedure 2
$query = "Shipped_Not_Shipped_Account ".$_GET['account_id'];
$result = odbc_exec($dbh, $query);
odbc_result_all($result);
</code></pre>
<p>I'm getting this error in PHP after the second stored procedure call:</p>
<blockquote>
<p>Warning: odbc_exec() [function.odbc-exec]: SQL error:
[unixODBC][FreeTDS][SQL Server]Invalid
cursor state, SQL state 24000 in
SQLExecDirect</p>
</blockquote>
<p>If I re-arrange the order I call the stored procedures, it is always the second that errors. Is there a way to, idk, reset the cursor position between calls? A little out of my element here.</p>
http://stackoverflow.com/questions/1210567/import-32-bit-dsn-into-64-bit-window-server0Import 32-bit dsn into 64-bit window servervivpuri2009-07-31T03:36:16Z2009-11-18T16:04:20Z
<p>We are in process of upgrading from 32-bit windows 2003 server to 64-bit windows 2003 server. We have hundreds of ODBC DSN's created on the 32-bit, which we now want to work on the 64-bit box. Using the registry export and importing into the 64-bit box results in those entries ending up on the 32-bit part of the odbc windows registry tree on the 64-bit box. Is there a way to import these DSNs into the 64-bit registry tree of ODBC?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/377097/connect-to-iseries-with-odbcconnection-password-prompting2Connect to iSeries with OdbcConnection: password promptingdbDude2008-12-18T07:12:26Z2009-11-16T18:37:00Z
<p>Hello,</p>
<p>I want to connect to DB using the iSeries Client Access driver. I use the following connection string:</p>
<p>DRIVER=Client Access ODBC Driver (32-bit);QUERYTIMEOUT=0;PKG=QGPL/DEFAULT(IBM),2,0,1,0,512;LANGUAGEID=ENU;DFTPKGLIB=QGPL;DBQ=QGPL
XXXXXXXX;SYSTEM=XXX.XXXXXXX.XXX;Signon=2</p>
<p>I get an exception when connecting:</p>
<p>ERROR [28000] [IBM][iSeries Access ODBC Driver]Communication link failure. comm rc=8015 - CWBSY1006 - User ID is invalid, Password length = 0, Prompt Mode = Never</p>
<p>How can I make the application prompt the user for his credentials to the DB?</p>
http://stackoverflow.com/questions/725046/why-cant-i-get-my-cdatabase-object-to-understand-my-data-source-name0Why can't I get my CDatabase object to understand my Data Source Name?Tommy Herbert2009-04-07T10:44:05Z2009-11-16T15:58:11Z
<p>I'm using the MFC class CDatabase. To establish a connection to SQL Server, I'm calling OpenEx() with a connection string. My problem is that the object seems unable to interpret the DSN part of the string. The connection string looks like this:</p>
<pre><code> ODBC;DSN=mySystemDSN;UID=myUsername;WSID=myMachineName;DATABASE=myDatabaseName;Trusted_Connection=Yes
</code></pre>
<p>That ought to be right because I got it by using OpenEx( NULL ), choosing the data source manually and then calling GetConnect().</p>
<p>But this string doesn't seem to contain enough information: OpenEx() always pops up a dialogue asking for more. It doesn't seem to matter what I choose from this dialogue - I can pick a DSN associated with a completely different database and things still work (a call to GetConnect() in that situation shows that it's using my connection string except for the DSN part, which is borrowed from the other data source).</p>
<p>I need my application to be able to connect to the database automatically - dialogue boxes are a deal-breaker. I've tried a DSN-less connection with similar results. What's going on here, and what can I do about it?</p>
<p><em>edit in answer to Neil Butterworth's question:</em></p>
<p>The information I provided when I created the DSN in the ODBC Data Source Administrator was as follows:</p>
<p>driver: SQL Server<br />
name: mySystemDSN<br />
server: myMachineName<br />
authentication type (can be Windows or SQL Server): Windows<br />
checkbox "Connect to SQL Server to obtain default settings for the additional configuration options.": ticked<br />
checkbox "Change the default database to": ticked and myDatabaseName chosen from drop-down menu<br />
checkbox "Use ANSI quoted identifiers": ticked<br />
checkbox "Use ANSI nulls, paddings and warnings": ticked<br />
checkbox "Perform translation for character data": ticked</p>
http://stackoverflow.com/questions/1684866/informix-dynamic-server-2000-how-do-i-enable-odbc0Informix Dynamic Server 2000: How do I enable ODBC?Denver2009-11-06T01:36:53Z2009-11-16T01:39:57Z
<p>I have an old server (Solaris 8) running Informix Dynamic Server 2000 Version 9.21.UC4, and I want to get ODBC enabled so that I can get to the data from elsewhere, but I haven't been able to find documentation online about how to do this on the server. I am able to use dbaccess on the server to get to the data just fine, but when I look through the service listing I don't see anything enabled for IDS...</p>
<p>Thoughts? Direction?</p>
<p>Thank you!</p>
<p>Additional thoughts:</p>
<ul>
<li>My server's host name is "r3tmmtx"</li>
<li>The informix internal server name seems to be "cms_ol"</li>
</ul>
<p>My sqlhosts file: </p>
<pre><code>demo_on onipcshm on_hostname on_servername
demo_se seipcpip se_hostname sqlexec
cms_ol onipcshm r3tmmtx cms_ol
oacms_ol onipcstr r3tmmtx oacms_ol
</code></pre>
<p>My environment variables with "INFORMIX" in them:</p>
<pre><code>INFORMIXTERM=terminfo
INFORMIXDIR=/opt/informix
INFORMIXSERVER=cms_ol
</code></pre>
http://stackoverflow.com/questions/1727267/connecting-to-oracle-10g-with-odbc-from-excel-vba0Connecting to Oracle 10g with ODBC from Excel VBAPeter Goras2009-11-13T05:17:54Z2009-11-16T00:31:15Z
<p>Hi,
The following code works. the connection opens fine but recordset.recordCount always returns -1 when there is data in the table. ANd If I try to call any methods/properties on recordset it crashes Excel. Any ideas??
Thanks</p>
<pre><code>Sub GetData()
Dim conn As New ADODB.connection
Dim connString
connString = "DSN=name;Uid=user;Pwd=pass"
Dim rsRecords As New ADODB.recordSet
conn.Open connString
rsRecords.CursorLocation = adUseServer
rsRecords.Open "select * from xxx", conn, adOpenForwardOnly, adLockReadOnly
If conn.State = adStateOpen Then
MsgBox rsRecords.RecordCount
Else
MsgBox "no connection"
End If
rsRecords.Close
Set rsRecords = Nothing
conn.Close
Set conn = Nothing
End Sub
</code></pre>