Forum: MySQL Jun 30th, 2008 |
| Replies: 1 Views: 1,237 This must be a pretty newbie mistake, but I'm still flummoxed by it. I created a very simple procedure:
create procedure deleteAll ()
begin
delete from test1;
delete from test2;
end |
Forum: Python Jun 27th, 2008 |
| Replies: 0 Views: 474 I am currently trying to convert a program I just wrote to application form, on the Mac. I'm using py2app to accomplish this, and everything works fine up until the last stage; when I try to complete... |