I'm still debugging the issue I reported earlier concerning upgrading
from 3.6.17 to 3.7.9.  One solution we are examining would be to
create a log of all SQL commands executed and then replay the log
using the different versions.  As an example, if I were to execute
(psuedo-code)

command := db.prepareExec('insert into foo values (:bar)');

for i := 0 to 100 do
  begin
    command.bind(':bar', i);
    command.execute;
  end;

the log would produce:

insert into foo values(1);
insert into foo values(2);
...
insert into foo values(100);

>From my examination of Sqlite, there doesn't appear to be a built in
mechanism for creating this type of log.  Is this correct or am I
missing something?


-- 
John Elrick
Fenestra Technologies
540-868-1377
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to