Dec 12, 2003 #1 100dtl Programmer Aug 18, 2003 313 GB How come if i run a query thus: alter table products add COLUMN boxnumber text(25) in the access query window it works but if i run the same query from a ASP page ie: conn.execute("alter table products add COLUMN boxnumber text(25)" it dont work?
How come if i run a query thus: alter table products add COLUMN boxnumber text(25) in the access query window it works but if i run the same query from a ASP page ie: conn.execute("alter table products add COLUMN boxnumber text(25)" it dont work?
Dec 12, 2003 #2 Darrylles Programmer Feb 7, 2002 1,758 GB Hi, Try a ; immediately before the last quote. Otherwise - don't know. Why not create a named query, and execute that? Regards, Darrylle "Never argue with an idiot, he'll bring you down to his level - then beat you with experience." darrylles@totalise.co.uk Upvote 0 Downvote
Hi, Try a ; immediately before the last quote. Otherwise - don't know. Why not create a named query, and execute that? Regards, Darrylle "Never argue with an idiot, he'll bring you down to his level - then beat you with experience." darrylles@totalise.co.uk
Dec 12, 2003 Thread starter #3 100dtl Programmer Aug 18, 2003 313 GB A named query? how do you mean Upvote 0 Downvote