### Eclipse Workspace Patch 1.0
#P h2
Index: h2/src/main/org/h2/command/Parser.java
===================================================================
--- h2/src/main/org/h2/command/Parser.java	(revision 5816)
+++ h2/src/main/org/h2/command/Parser.java	(working copy)
@@ -453,6 +453,8 @@
             case 'U':
                 if (readIf("UPDATE")) {
                     c = parseUpdate();
+                } else if (readIf("USE")) {
+                	c = parseUse();
                 }
                 break;
             case 'v':
@@ -511,7 +513,8 @@
         return c;
     }
 
-    private DbException getSyntaxError() {
+
+	private DbException getSyntaxError() {
         if (expectedList == null || expectedList.size() == 0) {
             return DbException.getSyntaxError(sqlCommand, parseIndex);
         }
@@ -5065,6 +5068,17 @@
         }
     }
 
+    private Prepared parseUse() {
+    	if (readIf("SCHEMA")) {
+            readIfEqualOrTo();
+            Set command = new Set(session, SetTypes.SCHEMA);
+            command.setString(readAliasIdentifier());
+            return command;
+        } else {
+        	throw getSyntaxError();
+        }
+	}
+
     private Set parseSetCollation() {
         Set command = new Set(session, SetTypes.COLLATION);
         String name = readAliasIdentifier();
