|
I set DataBase. DefaultDataFormat. EnableLongString := True, but i can't assign strings ... |
|
|
|
|
Sep 19, 2006 |
|
I set DataBase. DefaultDataFormat. EnableLongString := True, but i can't assign strings with length more than 255. I get NOE10/VAR.
Take a look on TOCIParam.ODataSize. It defines the maximum size of data, that can be stored in parameter. If you make DataFormat. EnableLongString := true; This actually only allows to use long strings, but the maximum size is - TOCIParam.ODataSize. So, set this value to appropriate number. |