src/org/objectweb/cjdbc/common/sql/UnknownRequest.java

説明を見る。
00001 00025 package org.objectweb.cjdbc.common.sql; 00026 00027 import java.io.Serializable; 00028 import java.sql.SQLException; 00029 00030 import org.objectweb.cjdbc.common.sql.schema.DatabaseSchema; 00031 00040 public class UnknownRequest extends AbstractRequest implements Serializable 00041 { 00051 public UnknownRequest(String sqlQuery, boolean escapeProcessing, int timeout, 00052 String lineSeparator) 00053 { 00054 super(sqlQuery, escapeProcessing, timeout, lineSeparator); 00055 cacheable = RequestType.UNCACHEABLE; 00056 } 00057 00062 public boolean isReadRequest() 00063 { 00064 return false; 00065 } 00066 00071 public boolean isWriteRequest() 00072 { 00073 return false; 00074 } 00075 00080 public boolean isUnknownRequest() 00081 { 00082 return true; 00083 } 00084 00092 public void parse(DatabaseSchema schema, int granularity, 00093 boolean isCaseSensitive) throws SQLException 00094 { 00095 throw new SQLException("Unable to parse an unknown request"); 00096 } 00097 00104 public void cloneParsing(AbstractRequest request) 00105 { 00106 throw new RuntimeException( 00107 "Unable to clone the parsing of an unknown request"); 00108 } 00109 }

CJDBCversion1.0.4に対してTue Oct 12 15:15:58 2004に生成されました。 doxygen 1.3.8