UniParameter Constructor
Posted: Fri 12 Mar 2010 08:28
Hi,
I have a weird comportment of the UniParameter constructor.
When I call for instance
The param3.UniDbType property is set to VarChar while i set Decimal in the constructor.
Also, if i set the property after the initialization, the property is correctly set.
I'm currently testing the version 3.10 of UniDirect.
Regards.
I have a weird comportment of the UniParameter constructor.
When I call for instance
Code: Select all
UniParameter param3 = new UniParameter("oID_COLORIS", UniDbType.Decimal);
Also, if i set the property after the initialization, the property is correctly set.
Code: Select all
param3.UniDbType = UniDbType.Decimal;
Regards.