-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Max number of charcters can be read in the SQL statement #17
Comments
Hi Hasan, what is your table schema from which you are trying to read >15 chars strings? I just put quick test together and it seem to work fine.
|
my table schema is: DESCRIBE USERS_MAIN ALIAS VARCHAR2(80) |
Initial code above selects 'fullName', but I don't see such column in your table schema. |
I splitted it into first and last names :), before it was: I just made same table you made, inserted same data, run same SQL code, my system hanged, and did not execute anything! thanks |
Puzzling. Is this with Dart 32-bit or 64-bit? |
DART 64 bit. but ORACLE XE itself is 32 bit. |
Tried odtest1 from above with Dart 64-bit and again it worked for me fine. (I also use Oracle 32-bit on Windows). |
Oracle Database XE 11.2 |
Hi Alex, Note: I run it using OCCI 32 bit, as could not get the x64 bit run in my laptop. |
Hi..
In my SQL statement:
var resultset = oracleConnection.select("select fullName from USERS_MAIN");
the oracledart could not read a field of more than 15 characters
I was able to read the name as: ''Hasan Abd Allah' [15 character]
but could not read it as 'Hassan Abd Allah' [16 character]
I tried same with other fields, kept changing the number of characters, everything is fine upto 15 characters only!
thanks
The text was updated successfully, but these errors were encountered: