lokki schrieb: > > Done ( my code will include the latest version available. wont it? > cause 0.7 is still in site-packages)
Sorry, I don't understand that. Which version your app will be installed with depends on its dependencies. If you did not set one no new SQLObject will be installed and thus the version used TG installed with. Append these line in *.egg-info/requires.txt to be on the safe side: SQLObject==bugfix >=0.7.1dev-r2553 (Or whatever version you wish to be used.) > >> 4. in "sqlobject/mysql/mysqlconnection" remove lines 31-34 (including) >> to let SQLObject have your querries pass directly to MySQLdb as >> they are delivered - in Unicode >> > > When i comment out the lines u say i get error's on app startup > Maybe u can post the exact lines???? Here come the changes: - if MySQLdb.version_info[:3] >= (1, 2, 1): - self.need_unicode = True - else: - self.need_unicode = False + self.need_unicode = False > Do u use Binary columns in u r app?? Because this is where i get the > problems Yes. To store images. (Not my idea.) photo = BLOBCol(length=2**16, varchar=False, notNone=True) -- Mark
smime.p7s
Description: S/MIME Cryptographic Signature

