> Daniel, > > Thanks for the patch. > I think it's a good idea to support this option for SQLite > connection string. However, I'm not sure about how it's realised > in the patch where it's boiled down to simple boolean flag. > > What do you think about supporting more completely, by determining > actual value: off, normal, full ?
Hello Mateusz, I am not sure what you mean. Actually I didn't introduce any boolean value. The "synchronous" variable in the patch is a string that contains the setting. This allows setting it to any of the values (even an unsupported value, though). So any of these are valid: sqlite3_test.exe "db=test.db synchronous=0" sqlite3_test.exe "db=test.db synchronous=OFF" sqlite3_test.exe "db=test.db synchronous=1" sqlite3_test.exe "db=test.db synchronous=NORMAL" sqlite3_test.exe "db=test.db synchronous=2" sqlite3_test.exe "db=test.db synchronous=FULL" Could you please explain what you mean? Daniel ------------------------------------------------------------------------------ Start uncovering the many advantages of virtual appliances and start using them to simplify application deployment and accelerate your shift to cloud computing http://p.sf.net/sfu/novell-sfdev2dev _______________________________________________ Soci-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/soci-users
