P
Puleen Patel
I am not sure if anyone has a quick and proofed solution for this.
Using C# I am trying to insert a new record into oracle database, where two
of the fields are
CLOB's. I am using Parameterized queries and running into a problem when
trying to add
one of the parameters to the command object. The error I get is as follows:
Parameter 'text_search': No size set for variable length data type: String.
text_search is a CLOB field.
To add to the parameters I am doing the following:
oCommand.Parameters.Add("text_search",this.text_search);
Anyone suggest a good way to use parameterized queries and to add records to
Oracle using C#?
puleen at canada dot com
Cheers
Using C# I am trying to insert a new record into oracle database, where two
of the fields are
CLOB's. I am using Parameterized queries and running into a problem when
trying to add
one of the parameters to the command object. The error I get is as follows:
Parameter 'text_search': No size set for variable length data type: String.
text_search is a CLOB field.
To add to the parameters I am doing the following:
oCommand.Parameters.Add("text_search",this.text_search);
Anyone suggest a good way to use parameterized queries and to add records to
Oracle using C#?
puleen at canada dot com
Cheers