Hello,
I've got the following table:
db = DAL('sqlite://storage.sqlite')
db.define_table('variable',
Field('name', type='string', length=255),
Field('value', type='string', length=255),
format='%(name)s',
primarykey=['name'])
This is what happens by adding different name/value pairs via appadmin:
test/foobar: ok
any_name/myValue: ok
active_event/someevent: nothing happens but flash notfier signals
successfull record
I can insert whatever I want - except "active_event" as name. It just
doesn't appear in the table. It looks like that query would be ignored.
As I worked a lot in the database while development so far, I just removed
the database folder from my applications to begin with a clean database.
However, the problem still persists.
Do you have any idea?
Regards, haggis