Code that is written like:
dml (DELETE FROM s
WHERE Session = {[v.Session]} );
with table defined as:
table s : {LoggedIn : time, User : string, Session : string}
PRIMARY KEY LoggedIn
and v being the a cookie value with attribute Session
Works, where as:
dml (DELETE FROM s
WHERE s.Session = {[v.Session]} );
Does not.
This is different from how the Sql example worked (where DELETE was used
with t.A), but the same as how the Tree example works.
I've posted the full chunk of code it comes out of at
http://paste.lisp.org/display/92786
What is the difference?
_______________________________________________
Ur mailing list
[email protected]
http://www.impredicative.com/cgi-bin/mailman/listinfo/ur