public
Description: HiveDB is an open source project for horizontally partitioning MySQL systems.
Homepage: http://www.hivedb.org
Clone URL: git://github.com/britt/hivedb.git
Click here to lend your support to: hivedb and make a donation at www.pledgie.com !
Updated HiveBasicDataSource to be compatible with Java6.  We know officially 
REQUIRE Java6.@
unknown (author)
Tue Apr 22 11:14:14 -0700 2008
commit  4d9e2702f31b478ef070b966961fbae2407cadcb
tree    6d5ec4c3b0c7e184c635defe3156c45947b088ec
parent  6f4e643cece4d09d656e4f852ff7d931ae818509
...
139
140
141
142
 
 
 
 
 
143
144
145
...
139
140
141
 
142
143
144
145
146
147
148
149
0
@@ -139,7 +139,11 @@ public class HiveBasicDataSource implements DataSource, Cloneable {
0
     comboPooledDataSource.setPreferredTestQuery(validationQuery);
0
   }
0
 
0
-  public boolean isWrapperFor(Class<?> iface) {
0
+    public <T> T unwrap(Class<T> iface) throws SQLException {
0
+        throw new UnsupportedOperationException();
0
+    }
0
+
0
+    public boolean isWrapperFor(Class<?> iface) {
0
     return false;
0
   }
0
 }

Comments