At http://bazaar.launchpad.net/~ndb-connectors/ndb-connectors/telco-6.3
------------------------------------------------------------
revno: 238
revision-id: mtaylor@stripped
parent: mtaylor@stripped
parent: mtaylor@stripped
parent: mtaylor@stripped
committer: Monty Taylor <mtaylor@stripped>
branch nick: telco-6.3
timestamp: Wed 2007-11-21 11:01:19 -0800
message:
Merged in NdbResultSetMetaData
added:
java/com/mysql/cluster/ndbj/NdbResultSetMetaData.java
ndbresultsetmetadata-20071121015730-7k6adr4x7a7nkpuh-1
------------------------------------------------------------
revno: 192.1.25.1.59
revision-id: mtaylor@stripped
parent: mtaylor@stripped
committer: Monty Taylor <mtaylor@stripped>
branch nick: devel
timestamp: Wed 2007-11-21 11:00:29 -0800
message:
Added NdbResultSetMetaData.
added:
java/com/mysql/cluster/ndbj/NdbResultSetMetaData.java
ndbresultsetmetadata-20071121015730-7k6adr4x7a7nkpuh-1
------------------------------------------------------------
revno: 192.1.25.1.58
revision-id: mtaylor@stripped
parent: mtaylor@stripped
committer: Monty Taylor <mtaylor@stripped>
branch nick: devel
timestamp: Wed 2007-11-21 10:55:50 -0800
message:
Reverted congfigure.in
modified:
configure.in configure.in-20070228020914-u2pk759xg7thauwf-13
=== added file 'java/com/mysql/cluster/ndbj/NdbResultSetMetaData.java'
--- a/java/com/mysql/cluster/ndbj/NdbResultSetMetaData.java 1970-01-01 00:00:00 +0000
+++ b/java/com/mysql/cluster/ndbj/NdbResultSetMetaData.java 2007-11-21 19:00:29 +0000
@@ -0,0 +1,135 @@
+package com.mysql.cluster.ndbj;
+
+import java.sql.ResultSetMetaData;
+import java.sql.SQLException;
+
+public class NdbResultSetMetaData implements ResultSetMetaData {
+
+ /* (non-Javadoc)
+ * @see java.sql.Wrapper#isWrapperFor(java.lang.Class)
+ */
+ public boolean isWrapperFor(Class<?> arg0) throws SQLException {
+ // TODO Auto-generated method stub
+ return false;
+ }
+
+ /* (non-Javadoc)
+ * @see java.sql.Wrapper#unwrap(java.lang.Class)
+ */
+ public <T> T unwrap(Class<T> arg0) throws SQLException {
+ // TODO Auto-generated method stub
+ return null;
+ }
+
+ NdbResultSetImpl theResultSet;
+
+ protected NdbResultSetMetaData(NdbResultSetImpl resultSet) {
+ theResultSet=resultSet;
+ }
+
+ public String getCatalogName(int arg0) throws SQLException {
+ // TODO Auto-generated method stub
+ return null;
+ }
+
+ public String getColumnClassName(int arg0) throws SQLException {
+ // TODO Auto-generated method stub
+ return null;
+ }
+
+ public int getColumnCount() throws SQLException {
+ // TODO Auto-generated method stub
+ return 0;
+ }
+
+ public int getColumnDisplaySize(int arg0) throws SQLException {
+ // TODO Auto-generated method stub
+ return 0;
+ }
+
+ public String getColumnLabel(int arg0) throws SQLException {
+ // TODO Auto-generated method stub
+ return null;
+ }
+
+ public String getColumnName(int arg0) throws SQLException {
+ // TODO Auto-generated method stub
+ return null;
+ }
+
+ public int getColumnType(int arg0) throws SQLException {
+ // TODO Auto-generated method stub
+ return 0;
+ }
+
+ public String getColumnTypeName(int arg0) throws SQLException {
+ // TODO Auto-generated method stub
+ return null;
+ }
+
+ public int getPrecision(int arg0) throws SQLException {
+ // TODO Auto-generated method stub
+ return 0;
+ }
+
+ public int getScale(int arg0) throws SQLException {
+ // TODO Auto-generated method stub
+ return 0;
+ }
+
+ public String getSchemaName(int arg0) throws SQLException {
+ // TODO Auto-generated method stub
+ return null;
+ }
+
+ public String getTableName(int arg0) throws SQLException {
+ // TODO Auto-generated method stub
+ return null;
+ }
+
+ public boolean isAutoIncrement(int arg0) throws SQLException {
+ // TODO Auto-generated method stub
+ return false;
+ }
+
+ public boolean isCaseSensitive(int arg0) throws SQLException {
+ // TODO Auto-generated method stub
+ return false;
+ }
+
+ public boolean isCurrency(int arg0) throws SQLException {
+ // TODO Auto-generated method stub
+ return false;
+ }
+
+ public boolean isDefinitelyWritable(int arg0) throws SQLException {
+ // TODO Auto-generated method stub
+ return false;
+ }
+
+ public int isNullable(int arg0) throws SQLException {
+ // TODO Auto-generated method stub
+ return 0;
+ }
+
+ public boolean isReadOnly(int arg0) throws SQLException {
+ // TODO Auto-generated method stub
+ return false;
+ }
+
+ public boolean isSearchable(int arg0) throws SQLException {
+ // TODO Auto-generated method stub
+ return false;
+ }
+
+ public boolean isSigned(int arg0) throws SQLException {
+ // TODO Auto-generated method stub
+ return false;
+ }
+
+ public boolean isWritable(int arg0) throws SQLException {
+ // TODO Auto-generated method stub
+ return false;
+ }
+
+}
| Thread |
|---|
| • Rev 238: Merged in NdbResultSetMetaData in http://bazaar.launchpad.net/~ndb-connectors/ndb-connectors/telco-6.3 | Monty Taylor | 21 Nov |