Użytkownik Ed Leafe napisał: > First off, this is not an error, just a warning to the developer. > > Try adding this case to the code in dCursorMixin.py: > > 969 elif isinstance(val, dNoEscQuoteStr): > 970 # Sometimes you want to set it to a sql function, equation, ect. > 971 ignore = True > 972 elif fld in nonUpdateFields: > 973 # don't worry so much if this is just a calculated field. > 974 ignore = True > elif (fldType is str) and (type(val) is buffer): > ignore = True > 975 else: > 976 # This can also happen with a new record, since we just stuff > the > 977 # fields full of empty strings. > 978 ignore = (rec.get(keyField, None) in self._newRecords) > > > It should silence the message, as this case is one that should be > ignored. Try adding those lines and let me know how things work then. > Note that the line numbers assume you've removed the previous debug > print statements. > >
Oh, you know, but line label is "Dabo Error Log:" :) Finally, after applying your patch, everything is working fine. Many thanks, Ed. Thank you spend your free time for my problems. -- Regards Jacek Kałucki _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev Searchable Archives: http://leafe.com/archives/search/dabo-dev This message: http://leafe.com/archives/byMID/[email protected]
