Hi,
I am using longtext in my sql having several thousands long amino acid sequences. But using lithium orm find_one() the result contains only the first 100 character of them. I dag into your code and founded the length of mysql results string is limited to 100 character, e.g in sql/internal/mysql_bind.hh line 111
It has any reason? May I rewrite v.resize(100) to v.resize(*real_length) ?
Thanks.
Hi, I am using longtext in my sql having several thousands long amino acid sequences. But using lithium orm find_one() the result contains only the first 100 character of them. I dag into your code and founded the length of mysql results string is limited to 100 character, e.g in sql/internal/mysql_bind.hh line 111 It has any reason? May I rewrite v.resize(100) to v.resize(*real_length) ? Thanks.