C# - ODP.NET and ora-01475 must reparse cursor to change bind variable datatype?

MyDate; //Code to set myDate value... string sql = "your SQL" using (OracleCommand command = new SqlCommand(sql, cn)) { OracleParameter param = new OracleParameter(":Name",myDate); command.Paerameters. Add(param); command.ExecuteNonQuery(); }.

Yes, and that's exactly the reason why I'm getting the problem, because in the first query I pass a null and then later on I pass a real date...I've solved it by explicitly specifying the Parameter DBType to Date, even if it's null. Thanks! – Ricardo Villamil Jan 29 '09 at 17:01.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions