Re: [SQLObject] troubles with unicode

2012-02-24 Thread Petr Jakeš
After some investigation of the method columnsFromSchema it looks like Firebird (FB 2.5 SuperServer actualy) returns the information about the field type in following form: > u'SHORT > ' > so it is necessary to add > t = t.strip() > in the for loop (tested) > > Anyway, I guess it cant hurt anythin

Re: [SQLObject] troubles with unicode

2012-02-24 Thread Petr Jakeš
> By extending method guessClass. > > Oleg, I have generated the test tablefor the Firebird 2.5 database. Than using the SQL select I have found on the web, I have queried fields metadata. Details here