> Legacy applications should continue to work. You might get a > compiler warning about a type mismatch on the 2nd parameter to > sqlite3_trace(). But calling a 2-parameter function with 3 > parameters is suppose to be harmless in C.
It's not allowed by the standard, so it will almost certainly break on some platforms. The change also breaks C++ source code compatibility. Please add a new function, perhaps with a flag argument to control which events are traced (something that might make sense anyway). ----------------------------------------------------------------------------- To unsubscribe, send email to [EMAIL PROTECTED] -----------------------------------------------------------------------------