Re: [U2] JSON Parsing

2010-12-14 Thread Tony Gravagno
> From: Rob Sobers > How do you handle JSON strings that have > more depth than sub-values can accommodate? PMJI - On one hand I'll say I believe it's not appropriate to approach storage of N-level structures in a 4-level MV structure (item,atb,val,sv). This is the first thing people did when t

Re: [U2] JSON Parsing

2010-12-14 Thread Symeon Breen
December 2010 20:39 To: 'U2 Users List' Subject: Re: [U2] JSON Parsing Hi Rob: I do not use anything more than Sub-values on the Web. It just get to complicated. However, I have an idea that might work for those that love the @IM and @TM. Here is an example from the Wikipedia pag

Re: [U2] JSON Parsing

2010-12-14 Thread Doug
I forgot to say the @ symbol was for demonstration purposes only... -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Doug Sent: Tuesday, December 14, 2010 1:39 PM To: 'U2 Users List' Subject: Re: [U2] JSON P

Re: [U2] JSON Parsing

2010-12-14 Thread Doug
}, "phoneNumber":[ { "@VM": "3035551212", "@SM": "3035551234","@TM":"3035551214" }, { "@VM": "2125551212", "@IM": "2125555567" } ] } -Original Message- From: u2-users-boun

Re: [U2] JSON Parsing

2010-12-14 Thread Rob Sobers
u2ug.org > [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Kevin King > Sent: Monday, December 13, 2010 4:10 PM > To: U2 Users List > Subject: Re: [U2] JSON Parsing > > Yes, on the BASIC side. You use CHANGE in BASIC to convert a > multidimensional JSON object to a dyn

Re: [U2] JSON Parsing

2010-12-14 Thread Doug
...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Kevin King Sent: Monday, December 13, 2010 4:10 PM To: U2 Users List Subject: Re: [U2] JSON Parsing Yes, on the BASIC side. You use CHANGE in BASIC to convert a multidimensional JSON object to a dynamic array? Okay, you have my

Re: [U2] JSON Parsing

2010-12-13 Thread Kevin King
Yes, on the BASIC side. You use CHANGE in BASIC to convert a multidimensional JSON object to a dynamic array? Okay, you have my attention... do tell please. ___ U2-Users mailing list U2-Users@listserver.u2ug.org http://listserver.u2ug.org/mailman/listin

[U2] JSON Parsing

2010-12-13 Thread Doug
I assume Kevin you are talking about on the UniBasic side because on JavaScript or Java this is simple array processing. My routine I built over 6 years ago handles hundreds of thousands of transactions a hour with no problem. I just use the CHANGE function to convert it to a dynamic array. Life