add note about value vs. expression
authorchriskl <chriskl>
Thu, 15 May 2003 14:49:08 +0000 (14:49 +0000)
committerchriskl <chriskl>
Thu, 15 May 2003 14:49:08 +0000 (14:49 +0000)
FAQ

diff --git a/FAQ b/FAQ
index 7b879b4e1daa7dce5357619b8ff1d5e727a26121..da3c20ff07d30bb726bfa3d00fcdd0975d1440e4 100644 (file)
--- a/FAQ
+++ b/FAQ
@@ -44,3 +44,10 @@ A: You need to drop the sequence attached to the SERIAL column of the table
    to PostgreSQL 7.3 from an earlier version, you need to run the
    contrib/adddepend script to record all dependencies.
 
+Q: When inserting a row, what is does the 'Value' or 'Expression' box mean?
+
+A: Choosing 'Expression' means that you can use functions, operators, other 
+   field names, etc. in your value - you need to properly quote any literal 
+   values yourself.  'Value' on the other hand, means that no matter what you
+   enter as the value, it will be inserted as-is into the database.
+