A new RSQLite package (version 0.4-1) has been uploaded to CRAN
(RSQLite embeds the SQLite (www.sqlite.org) database engine in R.)

Changes include:

* A new method for dbWriteTable that writes a table from a text file
  without creating an intermediate data.frame (useful for handling
  reasonably large amounts of data), e.g., 
    > dbWriteTable(con, "tablename", "filename", sep=",")

* dbConnect() now accepts values for the "cache_size" and "synchronous" 
  PRAGMAs (synchronous is set to 0 or "off") to improve SQLite performance.

* Fixed problems exporting/importing NA's 

Thanks to Seth Falcon, Ronggui Huang, and Charles Loboz for their
patches, bug reports, and testing for these enhancements.
