Heling Yao wrote: > change File "/root/dabo/dabo/dabo/db/dbSQLite.py", line 64, in escQuote > return qt + str(val).replace(sl, sl+sl).replace(qt, qt+qt) + qt > > to return qt + val.replace(sl, sl+sl).replace(qt, qt+qt) + qt > > seems to solve the problem, am I right?
Yes, you are (partially) right. We have to convert any non-string-like types to string (numbers, etc.). Here's my ticket entry, which will link to the change I just committed to the development branch. Please make the same change in your stable branch and let me know how it works. http://svn.dabodev.com/trac/dabo/ticket/1072#comment:1 Thanks! -- pkm ~ http://paulmcnett.com _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/dabo-users/[EMAIL PROTECTED]
