diff --git a/ChangeLog b/ChangeLog
index 109fec1..3a51823 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+Sat Mar 13 09:27:23 EST 2004 Brian Bruns
+ * doc/faq.html: fix typos, add question on write support
+ * doc/install.sgml: clarify yacc requirement
+ * doc/mdb-ver.txt: add -M to options
+ * doc/mdb-sql.txt: add BUGS sections
+ * src/libmdb/data.c: fix bug in call to mdb_get_double (Jeff Smith)
+ * src/libmdb/write.c: move declaration to top of function in crack_row3 (Jeff Smith), check for null in mdb_pack_row[3-4] (me)
+ * src/libmdb/index.c: fix hard coded index size in compressed index handling
+ * src/sql/lexer.l: missing ] in NUMBER (Jeff Smith)
+ * src/sql/mdbsql.c: temp_fill called with wrong value (Jeff Smith)
+ * src/odbc/odbc.c: fix typo, incorrect pointer dereference (Jeff Smith), change value to SQLSMALLINT * in type_info
+
Sat Mar 6 18:10:20 EST 2004 Brian Bruns
* include/mdbsql.h:
* src/libmdb/worktable.c:
diff --git a/doc/faq.html b/doc/faq.html
index 2ebba23..839a8fc 100644
--- a/doc/faq.html
+++ b/doc/faq.html
@@ -24,7 +24,9 @@
1.9 How do I help?
-1.10 What's this postcard thing?
+1.10 What's this postcard thing?
+
+1.11 When will MDB Tools support writing?
@@ -64,7 +66,7 @@ MDB Tools supports Jet version 3.0 and 4.0 databases. It does not, and probably
Add support for adding rows to existing tables and an mdb-import tool.
Add full write support to libmdb and libmdbsql.
Extract queries, table properties, VBA script, forms.
-mdb-check database consistancy checker and recovery tool.
+mdb-check database consistency checker and recovery tool.
Add joins.
Ability to add tables.
@@ -96,7 +98,10 @@ We are currently looking for corrupted Access databases to help with developing
- 1.10 What's this postcard thing?
-
-I, like many free software others, enjoy getting postcards from where users live. If you're a happy MDB Tools user (or even a disgruntled one, doesn't really matter) and want to drop me a postcard with a picture of the place you live, email me for my snail-mail address. Come one, you know you want to!
+I, like many free software others, enjoy getting postcards from where users live. If you're a happy MDB Tools user (or even a disgruntled one, doesn't really matter) and want to drop me a postcard with a picture of the place you live, email me for my snail-mail address. Come on, you know you want to!
+
+- 1.11 When will MDB Tools support writing?
-
+Writing to MDB files is a quite a bit more complicated than simply reading. Some preliminary support is available in the CVS version, this includes under-the-covers things like building rows, adding rows to tables, tracing the index chain to the row, and some work on index writes. These are the nuts and bolts of write support; the big thing left is the allocation of new pages and splitting full pages on inserts. When will this be done? I don't commit to timelines, but the next release (0.6) will have some usable, though not complete, write support.