Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Susmita

  1. Susmita

    Problem in Reading data rows through a OleDbDataReader

    Just a small correction in my query. It doesn't throw a Null Reference Exception, but Invalid Operation Exception - No data exists for the row/column. Susmita
  2. Susmita

    Problem in Reading data rows through a OleDbDataReader

    Dear Experts, I am trying to execute a store procedure using the OleDbCommand.ExecuteReader() method. The stored proc returns 64 rows. Although, the program is successfully executing the stored proc, but it throws a runtime Null Reference exception after retrieving few rows. I am retrieving...
  3. Susmita

    Creating an array of OleDbparameter

    Thanks for the reply. But I would like to know what does the statement OleDbParameter [] params = new OleDbParameter[2]; exactly do? I thought that it allocates and initializes the memory for the array. Susmita
  4. Susmita

    Creating an array of OleDbparameter

    Dear Experts, I was trying to create an array of OleDbParameter using the following code snippet, but it gave me a NullReference Exception - "Object Reference not set to an instance of an object." OleDbParameter [] params = new OleDbParameter[2]; SPparams[0].ParameterName = "BeginningDate"...

Part and Inventory Search

Back
Top