Richard said:
At least that is the interpretation you are placing on the evidence that
you are keeping to yourself.
For string primitives no practical limit less than OS available memory
has been identified. No restrictions are stated in the specification.
Probably, but not without information.
Richard.
Richard,
Sorry. I didnt express the issue properly.
I am getting the data from database in php and generating a combo box
by using it, which i got thourgh ajax in my code. I am using xml based
response and the variable used to get the child node value is not
capable of holding all the content and it is getting truncated.
Here is my code...
response = http_request.responseXML;
var items = response.getElementsByTagName("movienames");
if(items!=null && items.length!=0)
{
for(var i=0; i<items.length; i++) {
mvnamestr =
items
.getElementsByTagName("mvnamestr")[0].childNodes[0].nodeValue;
mvnameid =
items.getElementsByTagName("mvnameid")[0].childNodes[0].nodeValue;
theanamestr =
items.getElementsByTagName("theatrenamestr")[0].childNodes[0].nodeValue;
theaidstr =
items.getElementsByTagName("theatreidstr")[0].childNodes[0].nodeValue;
}
The
"items.getElementsByTagName("mvnamestr")[0].childNodes[0].nodeValue"
itself is not holding the entire content, but the variable what i am
passing from php is having the full data.
So automatically my variable "mvnamestr" wont have the full data.
I request to kindly teach me, if i haven't expressed the issue propely.