Small. Fast. Reliable.
Choose any three.
*** 74,89 ****
  *: 2004.04.25 : a password('') function to mask some values (as used in MySQL) would be fine, I need it, if I give the db out of the house, or is there something I didn't find? Or a simple MD5 function to obscure data
  using a one way hash. See the MySQL function MD5 or Password for examples.
  
- *: 2004.04.07 : Multiple databases are not supported. For example, the following construct
- for creating a table in a
- database db1 based on a table in database db2 won't work:
- 
-       create table db1.table1 as select * from db2.table1;
- 
- _: But I often need this. So, it should looks like a schemas in ORACLE
- database.
- 
-       2005.02.07 : isn't this supported by ATTACH DATABASE?
  
  *: 2004.03.26 : Hierarchical Queries.
  
--- 74,79 ----
***************
*** 303,308 ****
--- 293,304 ----
  
  _::Now supported as of 3.1
  
+ 
+ *: 2004.04.07 : Creating a table in a database db1 based on a table in database db2:
+ 
+       create table db1.table1 as select * from db2.table1;
+ 
+ _::This is supported by ATTACH DATABASE.
  
  ===========
  REMARK