ADO showing "hidden columns" with SQL Native Client - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T06:20:30Zhttp://stackoverflow.com/feeds/question/955960http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/955960/ado-showing-hidden-columns-with-sql-native-client0ADO showing "hidden columns" with SQL Native ClientEsperKnight2009-06-05T13:51:56Z2009-10-15T16:00:18Z
<p>I'm working on a legacy application using VB6 and Classic ASP. We're using disconnected ADO recordsets to pass data back and forth. Normally this works. But what has started happening recently is for any inner/outer join, ADO is including these in the available records to choose from. So when were specifying a column to update (in the cases it errors out, the primary key column), it in turns updates the wrong column (with the same name). I know it's normal for ADO to pull the primary keys for any joined tables, but the default for this is for ADO to hide them. In our case ADO isn't hiding them.</p>
<p>What I've narrowed it down to is the SQL Native Client driver is not working correctly. I can go back to the SQL Server driver (SQL 2000) and it works great, but as soon as I switch back to SQL Native Client, it exhibits the behavior above. I've checked the properties on the open connection and the properties of the recordsets themselves, they match in every instance except one (the count of how many hidden columns there are which makes sense, as SQL Native isn't hiding them).</p>
<p>I've tried everything from deleting the MSADC folder from IIS and re-adding it, I've uninstalled SQL Native and reinstalled it (and subsequently upgraded it to the newest version). I've recreated the ODBC connection several times as well in the process of troubleshooting it. At this point I'm at a loss.</p>
<p>Also one thing to add, it appears SQL Native Client works fine on our other servers and no one else is having this issue. Anyone might have an idea of what could be happening? Thanks!</p>
<p>Edit : Example of what's happening (this occurs on for any query (stored procedures if it matters) and with >= 1 joins of any kind)</p>
<p>select temp_id, temp_value on temp_test
inner join another_table on another_table.temp_id = temp_test.temp_id
inner join yet_another_table on yet_another_table.another_id = another_table.another_id</p>
<p>this'll produce in the ado recordset :</p>
<p>SQL Native Client</p>
<p>(0) temp_id</p>
<p>(1) temp_value</p>
<p>(2) temp_id (primary key of another_table)</p>
<p>(3) another_id (primary key of yet another_table)</p>
<p>SQL Server driver</p>
<p>(0) temp_id</p>
<p>(1) temp_value</p>
<p>SQL Server 2005 will show it as it should be as : temp_id, temp_value</p>
http://stackoverflow.com/questions/955960/ado-showing-hidden-columns-with-sql-native-client/965918#9659180Answer by AakashM for ADO showing "hidden columns" with SQL Native ClientAakashM2009-06-08T17:02:49Z2009-06-08T17:02:49Z<blockquote>
<p>this occurs on for any query (stored procedures if it matters) </p>
</blockquote>
<p>It's not <a href="http://social.msdn.microsoft.com/forums/en-US/sqldataaccess/thread/435a997b-339b-43b7-bab9-94f643fb1350/" rel="nofollow">the issue described here</a> is it? :</p>
<blockquote>
<p>If a change in the connection string changes the behavior, I would suppose that you have two different schemas, and then two versions of the same stored procedure; and the one that is executed with SQL Nativ Client is the incorrect one.</p>
</blockquote>
http://stackoverflow.com/questions/955960/ado-showing-hidden-columns-with-sql-native-client/1010251#10102510Answer by Warwick for ADO showing "hidden columns" with SQL Native ClientWarwick2009-06-18T00:52:59Z2009-06-18T00:52:59Z<p>I have exactly the same scenario, and have had it for over a year on our servers and servers at our client. I never found a solution and as a result we simply have to use the SQL Server driver, which is a shame as SQL Native seems to connect significantly faster.</p>
<p>It's nothing to do with different schemas or different versions of the same stored proceedure as suggested above. I use a file dsn and simply changing the driver name changes the behaviour to/from that mentioned above. It seems to happen to all views (probably stored proceedures too as indicated)</p>
<p>If anyone does find a solution I'd be keen to hear about it.</p>
<p>Warwick</p>