From: Emanuele O. <oli...@it...> - 2003-11-27 08:45:21
|
On Wed, Nov 26, 2003 at 11:37:59AM -0600, Ian Bicking wrote: > A SQLObject problem I suppose, though it's because you have trivial > classes. The only column in your A and B tables is the ID (which > SQLite generates automatically on insert). So there's no values to > insert, and there's no way to express an insert that doesn't insert > anything (strictly speaking, it inserts an ID, but because it is > implicit it doesn't show up in the SQL, and so the SQL is invalid). OK. I'm just jumping in SQLObject in these days so I try to give feedback as soon as possible. > Add some columns to your classes and you should be okay. They won't be > useful until you do that anyway. For sure. Thanks, Emanuele |