PaxJavaScript And LISPPA Technology
Jul 23, 2005
LISPPA (List Processing based on the Polymorphic Arrays) technology is a way
to process dynamic data structures (lists, trees and more) without using
pointers. LISPPA uses polymorphic arrays as a base of the data
representation.
A very important example of polymorphic arrays is the variant arrays in such
languages as Visual Basic, Object Pascal (Delphi) and other. The current
implementation of LISPPA has been created on the base of extension of the
ariant type. All languages of the paxScript scripting engine: paxPascal,
paxBasic, paxC, paxJavaScript support LISPPA. Code:
View 2 Replies
Mar 24, 2006
We have a Java and JSP environment and are looking at options for
the client, such as using Ajax. It would be especially interesting to
get comparisons (e.g., pros and cons) with applets or other approaches.
View 1 Replies
View Related
Dec 6, 2009
Through an AJAX implementation, I am receiving a SQL Query result that has:An object's attribute delimited by a comma.An entire object (database row) delimited by a colon.This is an example response to make it more clear for you.
1,Jeremy,130,80;2,Lauren,370,300;3,Jeancarlos,200,200;4,Luke,330,70;5,Bloom,392,108;
What I am trying to achieve is placing all of this data into an array. I've set up a little test bed to try and get this to work; this is all I have so far:
var testString = "1,Jeremy,130,80;2,Lauren,370,300;3,Jeancarlos,200,200;4,Luke,330,70;5,Bloom,392,108";
var testArray = new Array();
testArray = testString.split(";");[code]....
get a multi-dimensional array that has information for each person. Example:
FinalArray[0][0] = 1
FinalArray[0][1] = Jeremy
FinalArray[0][2] = 130
View 6 Replies
View Related