I'm using version 2.5.1 stable and I've created a virtual field as part of 
a table definition, like this:

db_mydb.define_table('my_table',
                Field('ROWID', 'id'),
                Field('test_field1', 'string', required=True),
                Field('test_field2', 'string', required=False),
                Field.Virtual('virtual_field_test', lambda row: 
"test_field"), 
                Field('test_field3', 'string', required=False),
                migrate=False)


The other fields show up in mydb.my_table.fields, but the virtual field 
does not.  According to the documentation, this didn't work in "earlier 
versions", but I assumed that means that it does work in the current 
version.  Is this a bug?
               

-- 

--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to