It seems apparent from the docs (and the function headers) that there is no way 
to cause Sqlite's Virtual Table xUpdate function to notify the implementation 
of the exact fields that were altered.
For example, if I do

UPDATE people SET age=40 WHERE name='jim'

then it would be great if the xUpdate function could inform one that only the 
field 'age' is being altered. As it is now, every field is fed to xUpdate, 
causing a circumventable read/verify/write burden on the VT implementation.

This must be a frequent question?

Thanks,
Ben
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to