On 2/21/06 3:00 PM, Michael Lackhoff wrote:
> My new project is a web based application with many forms that
> represent more or less a database table each and I have to write many
> forms to edit or add records.
> I use CGI-Application with a Plugin that makes it very easy to fill a
> form. This p
On 2/21/06, Michael Lackhoff <[EMAIL PROTECTED]> wrote:
> On 21 Feb 2006, John Siracusa wrote:
>
> > SQLite really has no concept of SQL data types. Well, it has a very
> > simplified concept, anyway. All that detail you put in your CREATE
> > TABLE statements is pretty much ignored by SQLite. I
On 21 Feb 2006, John Siracusa wrote:
> SQLite really has no concept of SQL data types. Well, it has a very
> simplified concept, anyway. All that detail you put in your CREATE
> TABLE statements is pretty much ignored by SQLite. Instead, it stores
> everything as strings and integers (and maybe
On 2/21/06, Michael Lackhoff <[EMAIL PROTECTED]> wrote:
> I found out about my problem from yesterday. It was all (well almost)
> my fault. In the database definition I had forgotten the 'INTEGER'
> qualifier but in the class definition everything was all right. Now
> these two didn't fit together
Hello again,
I found out about my problem from yesterday. It was all (well almost)
my fault. In the database definition I had forgotten the 'INTEGER'
qualifier but in the class definition everything was all right. Now
these two didn't fit together and I got these mysterious effects.
I say 'almo