hello there is my code. in sqlite works

if not request.env.web2py_runtime_gae:
    ## if NOT running on Google App Engine use SQLite or other DB
    db = DAL('sqlite://myplace1.db')
else:
    ## connect to Google BigTable (optional 'google:datastore://namespace')
    db = DAL('google:datastore+ndb')

tblTeste = db.define_table('teste',
                           Field('codigo','string', length=40, label='Dite o 
código'),
                           Field('nome', 'string', length=20, label = 'nome do 
usr')
                           )



def teste():
   try:
    frmTeste = SQLFORM(db.teste)

    if frmTeste.process().accepted:
        response.flash='Teste Cadastrado com sucesso'
    elif frmTeste.errors:
        response.flash='erro cadastro'
    else:
        response.flash= 'Preencha o formulario'

    return dict(frmTeste=frmTeste)
   except :
       response.flash='erro de execao'



-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
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/d/optout.

Reply via email to