Hello J-Michel Angers I had have that problem and I dont remember how i fixed... jajaja
what type of fields you are using ? nchar o char ? this determines what kind of connection need to use. There are a few options; mssql, mssql2, mssql3 and mssql4. If you are using nchar you need mssql2. In my esperience, you can use the others options and can still read data in a proper way but are more dificult because you need to decode and encode things all the time and take care of anything are talking in the same encodings... The encoding of you python and html files are important too, dont forget the encoding sentence at begining of your python code. I minimize problems with this configurations: # -*- coding: utf-8 -*- in the python files. UTF8 without BOM as enconding format in of any files in the proyect. -- 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.

