Be forewarned;  if you have EOAdaptorDebugEnabled, it apparently uses....

NSLog(sqlStatement);

To log the SQL.

Unfortunately, if the sql includes '%' characters, NSLog() will attempt to
interpret them as formatting commands and will likely cause your app to crash.
(i.e. consider:  %s -- it'll rip a random value off the stack and try to insert
it as a (char *)).  If it doesn't crash, you will see spurious goo in the log
messages.

b.bum

Reply via email to