473,699 Members | 2,838 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Confusing error message

I have a SqlDataAdapter. Fill filling a standard dataset and my code is
returning the below error. The "Error Loading data" is just a message my
code displays. "Error:" is the Exception.Messa ge message and then below
that is the stack trace. The strange part is the "Error:" data is data
from the SQL database and obviously not an error so I don't see how or why
it is there. Any clues for determining why the code is throwing an
expection from this would be helpful.

Note being a little short sighted I don't trap the SqlException just the
Exception but normally that is more meaningful then this.

Error Loading data
Error:
71:
RP:09603ppp pppppX!8 op%&6#3 'ppppp pppX+pp pppppp$) !pppp%&<])pppp pppp\ pppp
Stack:
at System.Data.Sql Client.SqlConne ction.OnError(S qlException exception,
Boolean breakConnection )
at System.Data.Sql Client.SqlInter nalConnection.O nError(SqlExcep tion
exception, Boolean breakConnection )
at
System.Data.Sql Client.TdsParse r.ThrowExceptio nAndWarning(Tds ParserStateObje ct
stateObj)
at System.Data.Sql Client.TdsParse r.Run(RunBehavi or runBehavior,
SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleR esultSet
bulkCopyHandler , TdsParserStateO bject stateObj)
at System.Data.Sql Client.SqlDataR eader.HasMoreRo ws()
at System.Data.Sql Client.SqlDataR eader.ReadInter nal(Boolean setTimeout)
at System.Data.Sql Client.SqlDataR eader.Read()
at System.Data.Com mon.DataAdapter .FillLoadDataRo w(SchemaMapping mapping)
at System.Data.Com mon.DataAdapter .FillFromReader (DataSet dataset,
DataTable datatable, String srcTable, DataReaderConta iner dataReader, Int32
startRecord, Int32 maxRecords, DataColumn parentChapterCo lumn, Object
parentChapterVa lue)
at System.Data.Com mon.DataAdapter .Fill(DataSet dataSet, String srcTable,
IDataReader dataReader, Int32 startRecord, Int32 maxRecords)
at System.Data.Com mon.DbDataAdapt er.FillInternal (DataSet dataset,
DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String
srcTable, IDbCommand command, CommandBehavior behavior)
at System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet, Int32
startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavior behavior)
at System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet)
at Utils.dbFunc.Lo adData(Form frm, SqlConnection cn, SqlDataAdapter ad,
DataSet ds, String msg)
Sep 22 '06 #1
3 1586
looks like your sql statement has a problem in it. Debug and stop when the
sql is about to execute. Take the sql statement and put it in Query Analyser
and run it direct, see if it works. If it does you can scrub the sql
statement as a possible issue, but i think you'll find your sql statement
throws an error ;)

"John J. Hughes II" <no@invalid.com wrote in message
news:OO******** *****@TK2MSFTNG P06.phx.gbl...
>I have a SqlDataAdapter. Fill filling a standard dataset and my code is
returning the below error. The "Error Loading data" is just a message my
code displays. "Error:" is the Exception.Messa ge message and then below
that is the stack trace. The strange part is the "Error:" data is data
from the SQL database and obviously not an error so I don't see how or why
it is there. Any clues for determining why the code is throwing an
expection from this would be helpful.

Note being a little short sighted I don't trap the SqlException just the
Exception but normally that is more meaningful then this.

Error Loading data
Error:
71:
RP:09603ppp pppppX!8 op%&6#3 'ppppp pppX+pp pppppp$) !pppp%&<])pppp pppp\ pppp
Stack:
at System.Data.Sql Client.SqlConne ction.OnError(S qlException exception,
Boolean breakConnection )
at System.Data.Sql Client.SqlInter nalConnection.O nError(SqlExcep tion
exception, Boolean breakConnection )
at
System.Data.Sql Client.TdsParse r.ThrowExceptio nAndWarning(Tds ParserStateObje ct
stateObj)
at System.Data.Sql Client.TdsParse r.Run(RunBehavi or runBehavior,
SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleR esultSet
bulkCopyHandler , TdsParserStateO bject stateObj)
at System.Data.Sql Client.SqlDataR eader.HasMoreRo ws()
at System.Data.Sql Client.SqlDataR eader.ReadInter nal(Boolean setTimeout)
at System.Data.Sql Client.SqlDataR eader.Read()
at System.Data.Com mon.DataAdapter .FillLoadDataRo w(SchemaMapping mapping)
at System.Data.Com mon.DataAdapter .FillFromReader (DataSet dataset,
DataTable datatable, String srcTable, DataReaderConta iner dataReader,
Int32 startRecord, Int32 maxRecords, DataColumn parentChapterCo lumn,
Object parentChapterVa lue)
at System.Data.Com mon.DataAdapter .Fill(DataSet dataSet, String srcTable,
IDataReader dataReader, Int32 startRecord, Int32 maxRecords)
at System.Data.Com mon.DbDataAdapt er.FillInternal (DataSet dataset,
DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String
srcTable, IDbCommand command, CommandBehavior behavior)
at System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet, Int32
startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavior behavior)
at System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet)
at Utils.dbFunc.Lo adData(Form frm, SqlConnection cn, SqlDataAdapter ad,
DataSet ds, String msg)

Sep 22 '06 #2
Thanks for the response... Unlikely the SQL statement, its a stored
procedure on a live system that has been running form months now. I might
suspect the stored procedure got modified in someway but it's my
understanding it happens infrequently. I am guessing a timeout issue but
normally a timeout would show a timeout which is why I am confused. It
almost looks like a buffer overrun in the adaptor but that is a wild guess.

Regards,
John

"Daniel" <Da*****@vestry online.comwrote in message
news:OE******** ******@TK2MSFTN GP06.phx.gbl...
looks like your sql statement has a problem in it. Debug and stop when the
sql is about to execute. Take the sql statement and put it in Query
Analyser and run it direct, see if it works. If it does you can scrub the
sql statement as a possible issue, but i think you'll find your sql
statement throws an error ;)

"John J. Hughes II" <no@invalid.com wrote in message
news:OO******** *****@TK2MSFTNG P06.phx.gbl...
>>I have a SqlDataAdapter. Fill filling a standard dataset and my code is
returning the below error. The "Error Loading data" is just a message my
code displays. "Error:" is the Exception.Messa ge message and then below
that is the stack trace. The strange part is the "Error:" data is data
from the SQL database and obviously not an error so I don't see how or why
it is there. Any clues for determining why the code is throwing an
expection from this would be helpful.

Note being a little short sighted I don't trap the SqlException just the
Exception but normally that is more meaningful then this.

Error Loading data
Error:
71:
RP:09603pp ppppppX! 8op%&6#3 'ppppp pppX+pp pppppp$ )!pppp%&< ])pppp pppp\ pppp
Stack:
at System.Data.Sql Client.SqlConne ction.OnError(S qlException exception,
Boolean breakConnection )
at System.Data.Sql Client.SqlInter nalConnection.O nError(SqlExcep tion
exception, Boolean breakConnection )
at
System.Data.Sq lClient.TdsPars er.ThrowExcepti onAndWarning(Td sParserStateObj ect
stateObj)
at System.Data.Sql Client.TdsParse r.Run(RunBehavi or runBehavior,
SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleR esultSet
bulkCopyHandle r, TdsParserStateO bject stateObj)
at System.Data.Sql Client.SqlDataR eader.HasMoreRo ws()
at System.Data.Sql Client.SqlDataR eader.ReadInter nal(Boolean setTimeout)
at System.Data.Sql Client.SqlDataR eader.Read()
at System.Data.Com mon.DataAdapter .FillLoadDataRo w(SchemaMapping
mapping)
at System.Data.Com mon.DataAdapter .FillFromReader (DataSet dataset,
DataTable datatable, String srcTable, DataReaderConta iner dataReader,
Int32 startRecord, Int32 maxRecords, DataColumn parentChapterCo lumn,
Object parentChapterVa lue)
at System.Data.Com mon.DataAdapter .Fill(DataSet dataSet, String
srcTable, IDataReader dataReader, Int32 startRecord, Int32 maxRecords)
at System.Data.Com mon.DbDataAdapt er.FillInternal (DataSet dataset,
DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String
srcTable, IDbCommand command, CommandBehavior behavior)
at System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet, Int32
startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavio r behavior)
at System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet)
at Utils.dbFunc.Lo adData(Form frm, SqlConnection cn, SqlDataAdapter ad,
DataSet ds, String msg)


Sep 22 '06 #3
It would take you second to check the stored procedure. At least check it so
you can get it off your list of things it could be. The procedure might have
never changed, doesnt mean (assuming it takes parameters) the values of the
parameters arent causing this.
"John J. Hughes II" <no@invalid.com wrote in message
news:%2******** ********@TK2MSF TNGP03.phx.gbl. ..
Thanks for the response... Unlikely the SQL statement, its a stored
procedure on a live system that has been running form months now. I
might suspect the stored procedure got modified in someway but it's my
understanding it happens infrequently. I am guessing a timeout issue but
normally a timeout would show a timeout which is why I am confused. It
almost looks like a buffer overrun in the adaptor but that is a wild
guess.

Regards,
John

"Daniel" <Da*****@vestry online.comwrote in message
news:OE******** ******@TK2MSFTN GP06.phx.gbl...
>looks like your sql statement has a problem in it. Debug and stop when
the sql is about to execute. Take the sql statement and put it in Query
Analyser and run it direct, see if it works. If it does you can scrub the
sql statement as a possible issue, but i think you'll find your sql
statement throws an error ;)

"John J. Hughes II" <no@invalid.com wrote in message
news:OO******* ******@TK2MSFTN GP06.phx.gbl...
>>>I have a SqlDataAdapter. Fill filling a standard dataset and my code is
returning the below error. The "Error Loading data" is just a message
my code displays. "Error:" is the Exception.Messa ge message and then
below that is the stack trace. The strange part is the "Error:" data is
data from the SQL database and obviously not an error so I don't see how
or why it is there. Any clues for determining why the code is throwing
an expection from this would be helpful.

Note being a little short sighted I don't trap the SqlException just the
Exception but normally that is more meaningful then this.

Error Loading data
Error:
71:
RP:09603pp ppppppX! 8op%&6#3 'pppp ppppX+p ppppppp$ )!pppp%& <])pppp pppp\ pppp
Stack:
at System.Data.Sql Client.SqlConne ction.OnError(S qlException exception,
Boolean breakConnection )
at System.Data.Sql Client.SqlInter nalConnection.O nError(SqlExcep tion
exception, Boolean breakConnection )
at
System.Data.S qlClient.TdsPar ser.ThrowExcept ionAndWarning(T dsParserStateOb ject
stateObj)
at System.Data.Sql Client.TdsParse r.Run(RunBehavi or runBehavior,
SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleR esultSet
bulkCopyHandl er, TdsParserStateO bject stateObj)
at System.Data.Sql Client.SqlDataR eader.HasMoreRo ws()
at System.Data.Sql Client.SqlDataR eader.ReadInter nal(Boolean
setTimeout)
at System.Data.Sql Client.SqlDataR eader.Read()
at System.Data.Com mon.DataAdapter .FillLoadDataRo w(SchemaMapping
mapping)
at System.Data.Com mon.DataAdapter .FillFromReader (DataSet dataset,
DataTable datatable, String srcTable, DataReaderConta iner dataReader,
Int32 startRecord, Int32 maxRecords, DataColumn parentChapterCo lumn,
Object parentChapterVa lue)
at System.Data.Com mon.DataAdapter .Fill(DataSet dataSet, String
srcTable, IDataReader dataReader, Int32 startRecord, Int32 maxRecords)
at System.Data.Com mon.DbDataAdapt er.FillInternal (DataSet dataset,
DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String
srcTable, IDbCommand command, CommandBehavior behavior)
at System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet, Int32
startRecord , Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavi or behavior)
at System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet)
at Utils.dbFunc.Lo adData(Form frm, SqlConnection cn, SqlDataAdapter
ad, DataSet ds, String msg)



Sep 22 '06 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
1655
by: David MacQuigg | last post by:
I'm setting up a large hierarchy of module packages and using a variable to select which of many alternative packages to import. For example, the variable 'config.modsel' points to a particular "model selector" package. 'config' is a module containing many such variables. My first attempt resulted in a confusing error message: >>> from config.modsel.modelselector import ModelSelector
65
4066
by: Pmb | last post by:
I'm confused as to what the compiler error message I'm getting is refering to. Can someone take a gander and let me know what I did wrong? The program is below. When I compile it I get the following error ______________________________ Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland d:\temp\complex\temp.cpp: Error E2333 d:\temp\complex\temp.cpp 73: Class member 'Complex::conjugate(Complex)' declared outside its class Error...
16
2069
by: Shelly | last post by:
(posted previously on comp.lang.php but no response received. Cross-posted in the dreamweaver forum) I am confused about what goes on with method POST. Here is an overview of a my code, sketching it out: <?php if (isset($_POST) && $_POST=="Submit") { ---Do a bunch of stuff--- if (isset($_SESSION)) unset($_SESSION);
4
1606
by: Bazza Formez | last post by:
Hi, Unlike some people I have read about in this news group, I am having trouble turning off debug.... but the error message seems to indicate the opposite. When I set debug="false" in web.config, and then start the application, I get the following (contrary) error message in Visual Studio : "Error while trying to run project: Unable to start debugging on the web server. The project is not configured to be debugged."
2
2068
by: d3vkit | last post by:
Okay so I can NOT get my while loop to work. It's the most confusing thing I've ever come across. It was working fine and then suddenly, nothing. No error. The page just dies. I am using PHP5 with mysql. Same problem in Fx 2.0 and IE 7. I have the query sort of spread out across three pages to make it easier for me to generate it; I have a pagination script which checks what is being accessed from the query string (is it the whole blog or an...
12
1738
by: Wilson | last post by:
Hi, while writing a simplified version of a program i created the following class, however when i went to compile and run the program there was an error saying "multiple types in one declaration" and there was a mention of a "" and "Error 1" it also highlights the final line (the one with a closing brace and semi-colon), i cannot see what is wrong with this, please help
1
1354
by: Nyx18 | last post by:
ok so i got my class to work now im having confusing errors with this: void sort(Student stu, int parameter, int count) { Student temp; bool finished = false; while (!finished) { finished = true;
7
1365
by: Andy B | last post by:
I saw this in the set accessor of a property: Set(ByVal value As DataSet) What exactly does the stuff in the () mean? VS complained about it not being there when I took it out not knowing it needed to be there.
7
1925
by: Luna Moon | last post by:
Hi all, I just couldn't get myself clear about the usage of "const" in front of and/or behind variables, pointers, classes, objects and functions... It's too confusing... any good clear article/tutorial that can help me? Thanks a lot!
0
991
by: Lloyd Sheen | last post by:
In design view of an aspx page I have an Ajax Toolkit ToolkitScriptManager control. The markup for this is <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %> .....
0
8685
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8612
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
8905
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8880
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6532
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5869
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4373
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4625
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
2342
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.