Notes and comments about the implementation of SmeQl (or lack of). ------- Is there an implementation in the works? -AnonymousDonor ''You know, I started working on a proof-of-concept implementation using ExBase, but found that dealing with column types and lengths for schema-creating operations such as joins was a bit of a pain. I am now considering using it to help demo a DynamicRelational database such that column types and lengths are not an issue. As a short-cut from parsing I was going to implement it using "query tables" with a structure resembling: '' * table_alias * operation * parameter_1 * parameter_2 * parameter_3 ... Thus, something like this: a = filter(j, b < c) b = join(a, x, q = b.z) orderBy(b, r) Would be: Seqnc.|Alias...|Operator|.p1.|..p2..|.p3 ------|--------|--------|----|------|------- ...1..|a.......|filter..|.j..|.b