How do I interpret the error output?

  • Thread starter Thread starter Justin Doh
  • Start date Start date
J

Justin Doh

I am still a novice with .NET and I am little bit struggling with debugging.
I am trying to find the cause of the error.
Is it the problem with system.data.dll or libdata.dll or what?

Any feedback from your experience is greatly appreacited.

Thanks.
Justin
----------------------------------------------------------------------------
A first chance exception of type 'System.InvalidOperationException' occurred
in system.data.dll

Additional information: The ConnectionString property has not been
initialized.

A first chance exception of type 'System.InvalidOperationException' occurred
in libdata.dll

Additional information: The ConnectionString property has not been
initialized.

The program '[4996] FCRootCause2.exe' has exited with code 0 (0x0)
 
Justin Doh said:
I am still a novice with .NET and I am little bit struggling with
debugging.
I am trying to find the cause of the error.
Is it the problem with system.data.dll or libdata.dll or what?

Any feedback from your experience is greatly appreacited.

Thanks.
Justin
----------------------------------------------------------------------------
A first chance exception of type 'System.InvalidOperationException'
occurred
in system.data.dll

Additional information: The ConnectionString property has not been
initialized.

A first chance exception of type 'System.InvalidOperationException'
occurred
in libdata.dll

Additional information: The ConnectionString property has not been
initialized.

The program '[4996] FCRootCause2.exe' has exited with code 0 (0x0)


It looks like you're trying to access a database with a connection string,
and something is wrong with the connection string or it has not been
supplied. The problem is on your end.

Don't you have some beginner books?
 
Back
Top