2006/4/11, Tim Lesher <[EMAIL PROTECTED]>:
On 4/10/06, Steve Bergman <[EMAIL PROTECTED]> wrote:
>
> I'm not sure 'fault' is the right word. I never use words which are
> reserved in any of the underlying packages that I am using, even if I
> *could* do it. It's a sure recipe for confusion down the road.
I'm with you here. Just because you can
INSERT INTO "SELECT" ("SELECT") VALUES ("SELECT")
doesn't mean you should. :-)
--
Tim Lesher < [EMAIL PROTECTED]>in my case,while wanting to create a Order(SQLObject) in mySQL database,error occurs!maybe the answer is "order" is a reserver word in SQL-language. solution like this:class Order(SQLObject):
class sqlmeta:
table = "order_table"
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "TurboGears" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/turbogears
-~----------~----~----~----~------~----~------~--~---

