Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to use a SqlDataAdapter to fill a DataTable, which I use as a data source to a DataGrid. The query is fine, at least when I run it manually in SSMSE. When I do the fill operation, the table gets the right columns, but no rows. The most frustrating part of this is that the code is identical (with a different query) on a different page. I cannot post the query, but my initialization code looks like this:

SqlCommand areaDAC = new SqlCommand (areaQuery, connection);
areaDAC.Parameters.Add (new SqlParameter ("@param", System.Data.SqlDbType.NVarChar, 50));
m_areaDataAdapter = new SqlDataAdapter (areaDAC);

Then to use it:

m_areaDataAdapter.SelectCommand.Parameters["@param"].Value = "Filter Val";
DataTable table = new DataTable ();
m_areaDataAdapter.Fill (table);

At this point, table has the right number of columns and no rows. I know the parameters are being added correctly, I know that data exists for the given query.

Update (as provided by Nik in a comment):

SELECT * FROM 
   (SELECT 
       ROW_NUMBER() OVER(ORDER BY DateAndTime DESC) AS rowNum, 
       areaName, stationName, lineName, DateAndTime, 
       Element, Description 
    FROM 
       sdrReportArea, sdrReportStation, sdrReportTLine, 
       SDRSequenceEvents, SDRSequenceStates 
    WHERE 
       sdrReportArea.areaID = sdrReportStation.stationID 
       AND sdrReportStation.stationID = sdrReportTLine.stationID 
       AND sdrReportTLine.lineID = SDRSequenceEvents.LineID 
       AND SDRSequenceEvents.StateID = SDRSequenceStates.StateID 
       AND DateAndTime >= @startDate AND DateAndTime <= @endDate 
       AND areaName = @area) AS TempTbl 
WHERE 
    rowNum BETWEEN @startRow AND @endRow;
share|improve this question
1  
Have you tested the SQL query directly in SQL Manager? Are you catching exceptions and examining them for clues? – Mike Hofer Feb 7 '11 at 18:32
1  
I would recommend you check our connection string as well. Is it possible that the query that works is going to a different version of the database that doesn't have the data you're looking for? – Joel Etherton Feb 7 '11 at 18:36
The query works fine manually. The connection string is OK and matches the server I tested manually against. There are no exceptions when I run the C# code. The purpose of the rowNum column is to window the data, only 50 rows at a time, which again, works fine manually. – Nik Feb 7 '11 at 18:43
All of the parameters are populated correctly beforehand as well. – Nik Feb 7 '11 at 18:44
1  
@Nik: Please update your question with the information you posted in the comment. This has nothing to do with ASP.NET or C#, so why put them in the title? – John Saunders Feb 7 '11 at 19:45
show 1 more comment

5 Answers

up vote 1 down vote accepted
  1. Try removing the date type parameter in where clause and test again.
  2. And I faced such problem With typed dataset where "Over" not work(IMO), so I guess it will not work here too. Use SPs instead if possible.
share|improve this answer
I do not understand your comment. I know about the differences between queries and SPs, but how would an SP help me here. My table ends up with the right columns, just no data. – Nik Feb 7 '11 at 19:42
I guess the actual problem lies with plain sql query which uses Row_Number And Over. And I faced such issues with typeddatasets while doing custom pagination. So later on I moved that queries too Stored Procedure and that worked. So as I said if possible try placing it into SP. – alliswell Feb 7 '11 at 19:46
Ended up creating a stored procedure, though with that I also had to pass my date and time parameters as strings and convert them inside of the SP. – Nik Feb 8 '11 at 14:49
1  
"I also had to pass my date and time parameters as strings" - I suspect passing them as strings was your problem. You should have passed them as SqlDateTime. Probably the date format of your string did not match that used by the connection. – Joe Feb 9 '11 at 20:03

One thing you could try might be to run ExecuteReader and iterate through the results.

IDataReader reader = m_areaDataAdapter.SelectCommand.ExecuteReader();
while(reader.Read())
{
    ...
}

This might help you to see if the problem is with your command, or with your DataTable.

I know the parameters are being added correctly, I know that data exists for the given query

When you're debugging, you should question all your assumptions, including this one. Note also that when executing queries manually using SSMSE, your connection may be configured differently (e.g. ANSI NULLS, ANSI PADDING) and therefore give different results.

EDIT

In response to Nik's comment, here are some suggestions for debugging this.

  1. Run similar code, but modifying the query so that it does not have any parameters (i.e. hardwired values for start/end date, area, start/end row). If this doesn't work, then it seems likely that your connection may be configured differently from SSMSE. If it does work, then ...

  2. Add parameters to your query one by one until it fails. You will then be able to identify which parameter caused it to fail. Likely the penny will drop and you'll see why (e.g. parameter name misspelt?), if not, post the code here.

share|improve this answer
How would I check things like ANSI NULLS? The data reader isn't returning any data either. I say the parameters are being added correctly because before stuff executes, I check the parameters and their values in memory, and they are set right. Is there something that I have to explicitly say to use parameters? – Nik Feb 7 '11 at 19:39

Are you accessing the query through a webservice that executes the ADO.NET call? If the server's timezone is different, the values for @StartDate and @EndDate may not be what you expect.

share|improve this answer

There may be problem between your join by Multiple WHERE Clause. You have to find out that whatever table are join on specific ID is correct or not as per your database table and data.

share|improve this answer

I was just having a similar problem with OracleDataAdapter. I was trying to even do a simple

select * from table

and it wasn't working. I ended up setting the

DbCommand.CommandTimeout

property and it began to work. I'm still confused, though, because I have previously never had to set these properties.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.