Re: [Jmol-users] SQL syntax for two-dimensional associative arrays

2015-05-07 Thread Robert Hanson
Ah, yes! I see that. Fixed. Standby... On Thu, May 7, 2015 at 5:16 AM, Rolf Huehne wrote: > On 05/07/2015 05:11 AM, Robert Hanson wrote: > > Jmol.___JmolVersion="14.3.13_2015.05.06" > > > > http://chemapps.stolaf.edu/jmol/zip/jmol-14.3.13_2015.05.06.zip > > > > new feature: "drilling" in associa

Re: [Jmol-users] SQL syntax for two-dimensional associative arrays

2015-05-07 Thread Rolf Huehne
On 05/07/2015 05:11 AM, Robert Hanson wrote: > Jmol.___JmolVersion="14.3.13_2015.05.06" > > http://chemapps.stolaf.edu/jmol/zip/jmol-14.3.13_2015.05.06.zip > > new feature: "drilling" in associative arrays for sub arrays with a given > property (Rolf Huehne) > -- uses "**" as the SELECT option,

Re: [Jmol-users] SQL syntax for two-dimensional associative arrays

2015-05-06 Thread Robert Hanson
Jmol.___JmolVersion="14.3.13_2015.05.06" http://chemapps.stolaf.edu/jmol/zip/jmol-14.3.13_2015.05.06.zip new feature: "drilling" in associative arrays for sub arrays with a given property (Rolf Huehne) -- uses "**" as the SELECT option, sort of the way ** sometimes means "subdirectories of"

Re: [Jmol-users] SQL syntax for two-dimensional associative arrays

2015-05-06 Thread Rolf Huehne
On 05/06/2015 03:51 PM, Rolf Huehne wrote: > --- Example Query 3 - > x = {"key_1": {"type": "a"}, "key_2": {"type": "b"}, "key_3": {"type": > "a"}}; > z = getProperty(x, "[SELECT *][SELECT * WHERE key1='a']"); > print "x: type=" + z.type + " size=" + z.size; > show z; > > x