Re: SqlDataReader and System.InvalidCastException
- From: brian.gabriel@xxxxxxxxx
- Date: Fri, 29 Aug 2008 08:07:49 -0700 (PDT)
Some more strange behavior, the following line will cause an exception
to be thrown:
rsIntlOrder.GetString(3).Trim()
If I place a breakpoint there, this line works fine in the Immediate
Window and does not throw an error.
Any ideas out there?
Thanks,
Brian
On Aug 28, 2:30 pm, brian.gabr...@xxxxxxxxx wrote:
I am using trying to get some data out of a SQL 2000 database via
stored procedure, but I am getting some strange results. It will pull
back the first 3 fields but the rest (7 other fields) seem to be
empty, and not just DBNull, but the objects just aren't there.
Here is the code:
SqlCommand cmd = new SqlCommand("psx_GetIntlAdrress", cn);
cmd.CommandType = CommandType.StoredProcedure;
SqlParameter paraOrderID = new SqlParameter("@OrderID",
SqlDbType.Char);
paraOrderID.Value = SourceMessage.SelectSingleNode("/Orders/
OrderHeader/OrderID").InnerText;
cmd.Parameters.Add(paraOrderID);
SqlDataReader rsIntlOrder = cmd.ExecuteReader();
if (rsIntlOrder.HasRows)
{
while (rsIntlOrder.Read())
{...
This gives me the "Object reference not set to an instance of an
object." exception:
string sSomeValue = rsIntlOrder[3] != DBNull.Value ?
rsIntlOrder[2].ToString().Trim() : "";
I have verified that the stored procedure is returning all values. If
I break one a line that works and look at the datareader it shows that
there are 10 fields, but only the first 3 will not throw an error.
Drilling down, the remaining elements show System.InvalidCastException
for all data types. Not sure what is going wrong here, hoping someone
can help.
Thanks,
Brian
brian.gabr...@xxxxxxxxx
.
- Follow-Ups:
- Re: SqlDataReader and System.InvalidCastException
- From: Miha Markic
- Re: SqlDataReader and System.InvalidCastException
- References:
- SqlDataReader and System.InvalidCastException
- From: brian . gabriel
- SqlDataReader and System.InvalidCastException
- Prev by Date: Oracle, SQL Interview Questions
- Next by Date: IT - Jobs, Interview Questions, Certification
- Previous by thread: SqlDataReader and System.InvalidCastException
- Next by thread: Re: SqlDataReader and System.InvalidCastException
- Index(es):
Relevant Pages
|