On Thursday, January 7, 2016 at 10:59:45 AM UTC-5, Richard wrote: > > Hello, > > It seems that someone as activate a undocumented truncate function over > CRUD and it by default to True or something... This cause an issue in my > app... It's not a big deal, I just add : truncate=None attribute with > crud.select() and it get away... But I guess it should be the default. And > it seems not documented in the book as mention and it should be. >
crud.select() generates a SQLTABLE, which by default truncates string and text fields to 16 characters (which is documented). It has been that way for years. It appears the book does not make it clear that the **attr arguments passed to crud.select() ultimately get passed on to SQLTABLE. Anthony -- 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.

