SQL Server 2005 table:
id int
title nvarchar 150
bodycopy text 16
image nvarchar 150
summary text 16
author nvarchar 150
Query:
SELECT [id], [title], [image], [author], [bodycopy], [summary] FROM [tblStories] WHERE [id]=2
Problem:
Any field following a text field in the query is.. empty. There's data in the table, I can run the query in Query Analyser direct and get everything. I've tried swapping the order of fields round in the query, and the problem persists.
I suspect that this isn't a SQL Server issue, but an ADODB one. And I'm sure I've seen it before. But Google doesn't appear to have done, and I'm at a loss as to how to fix it (other than running seperate queries - not ideal).
Anyone shed any light?