OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SQLException
(Results
1 - 25
of
156
) sorted by null
1
2
3
4
5
6
7
/frameworks/base/core/java/android/database/
SQLException.java
22
public class
SQLException
extends RuntimeException
24
public
SQLException
() {}
26
public
SQLException
(String error)
/libcore/luni/src/main/java/java/sql/
ResultSetMetaData.java
46
* @throws
SQLException
49
public String getCatalogName(int column) throws
SQLException
;
58
* @throws
SQLException
62
public String getColumnClassName(int column) throws
SQLException
;
68
* @throws
SQLException
71
public int getColumnCount() throws
SQLException
;
80
* @throws
SQLException
83
public int getColumnDisplaySize(int column) throws
SQLException
;
92
* @throws
SQLException
95
public String getColumnLabel(int column) throws
SQLException
;
[
all
...]
DatabaseMetaData.java
371
* @throws
SQLException
374
public boolean allProceduresAreCallable() throws
SQLException
;
382
* @throws
SQLException
385
public boolean allTablesAreSelectable() throws
SQLException
;
393
* @throws
SQLException
396
public boolean dataDefinitionCausesTransactionCommit() throws
SQLException
;
404
* @throws
SQLException
407
public boolean dataDefinitionIgnoredInTransactions() throws
SQLException
;
420
* @throws
SQLException
423
public boolean deletesAreDetected(int type) throws
SQLException
;
[
all
...]
Savepoint.java
32
* @throws
SQLException
35
public int getSavepointId() throws
SQLException
;
41
* @throws
SQLException
44
public String getSavepointName() throws
SQLException
;
Statement.java
89
* @throws
SQLException
93
public void addBatch(String sql) throws
SQLException
;
101
* @throws
SQLException
104
public void cancel() throws
SQLException
;
109
* @throws
SQLException
113
public void clearBatch() throws
SQLException
;
118
* @throws
SQLException
121
public void clearWarnings() throws
SQLException
;
133
* @throws
SQLException
136
public void close() throws
SQLException
;
[
all
...]
ParameterMetaData.java
72
* @throws
SQLException
75
public String getParameterClassName(int paramIndex) throws
SQLException
;
82
* @throws
SQLException
85
public int getParameterCount() throws
SQLException
;
100
* @throws
SQLException
103
public int getParameterMode(int paramIndex) throws
SQLException
;
113
* @throws
SQLException
116
public int getParameterType(int paramIndex) throws
SQLException
;
127
* @throws
SQLException
130
public String getParameterTypeName(int paramIndex) throws
SQLException
;
[
all
...]
SQLInput.java
53
* @throws
SQLException
56
public String readString() throws
SQLException
;
64
* @throws
SQLException
67
public boolean readBoolean() throws
SQLException
;
74
* @throws
SQLException
77
public byte readByte() throws
SQLException
;
84
* @throws
SQLException
87
public short readShort() throws
SQLException
;
94
* @throws
SQLException
97
public int readInt() throws
SQLException
;
[
all
...]
SQLOutput.java
48
* @throws
SQLException
51
public void writeString(String theString) throws
SQLException
;
58
* @throws
SQLException
61
public void writeBoolean(boolean theFlag) throws
SQLException
;
68
* @throws
SQLException
71
public void writeByte(byte theByte) throws
SQLException
;
78
* @throws
SQLException
81
public void writeShort(short theShort) throws
SQLException
;
88
* @throws
SQLException
91
public void writeInt(int theInt) throws
SQLException
;
[
all
...]
ResultSet.java
154
* @throws
SQLException
157
public boolean absolute(int row) throws
SQLException
;
162
* @throws
SQLException
165
public void afterLast() throws
SQLException
;
171
* @throws
SQLException
174
public void beforeFirst() throws
SQLException
;
179
* @throws
SQLException
182
public void cancelRowUpdates() throws
SQLException
;
187
* @throws
SQLException
190
public void clearWarnings() throws
SQLException
;
[
all
...]
Connection.java
90
* @throws
SQLException
93
public void clearWarnings() throws
SQLException
;
107
* @throws
SQLException
110
public void close() throws
SQLException
;
118
* @throws
SQLException
122
public void commit() throws
SQLException
;
133
* @throws
SQLException
137
public Statement createStatement() throws
SQLException
;
160
* @throws
SQLException
164
throws
SQLException
;
[
all
...]
Blob.java
40
* @throws
SQLException
43
public InputStream getBinaryStream() throws
SQLException
;
51
* @throws
SQLException
54
public InputStream getBinaryStream(long pos, long length) throws
SQLException
;
66
* @throws
SQLException
69
public byte[] getBytes(long pos, int length) throws
SQLException
;
76
* @throws
SQLException
79
public long length() throws
SQLException
;
94
* @throws
SQLException
97
public long position(Blob pattern, long start) throws
SQLException
;
[
all
...]
PreparedStatement.java
41
* @throws
SQLException
44
public void addBatch() throws
SQLException
;
54
* @throws
SQLException
57
public void clearParameters() throws
SQLException
;
72
* @throws
SQLException
75
public boolean execute() throws
SQLException
;
82
* @throws
SQLException
86
public ResultSet executeQuery() throws
SQLException
;
95
* @throws
SQLException
99
public int executeUpdate() throws
SQLException
;
[
all
...]
CallableStatement.java
67
* @throws
SQLException
70
public Array getArray(int parameterIndex) throws
SQLException
;
79
* @throws
SQLException
82
public Array getArray(String parameterName) throws
SQLException
;
94
* @throws
SQLException
97
public BigDecimal getBigDecimal(int parameterIndex) throws
SQLException
;
112
* @throws
SQLException
119
throws
SQLException
;
130
* @throws
SQLException
133
public BigDecimal getBigDecimal(String parameterName) throws
SQLException
;
[
all
...]
Clob.java
42
* @throws
SQLException
45
public InputStream getAsciiStream() throws
SQLException
;
52
* @throws
SQLException
55
public Reader getCharacterStream() throws
SQLException
;
65
* @throws
SQLException
68
public String getSubString(long pos, int length) throws
SQLException
;
74
* @throws
SQLException
77
public long length() throws
SQLException
;
89
* @throws
SQLException
92
public long position(Clob searchstr, long start) throws
SQLException
;
[
all
...]
SQLData.java
57
* @throws
SQLException
60
public String getSQLTypeName() throws
SQLException
;
86
* @throws
SQLException
90
public void readSQL(SQLInput stream, String typeName) throws
SQLException
;
109
* @throws
SQLException
113
public void writeSQL(SQLOutput stream) throws
SQLException
;
Struct.java
34
* @throws
SQLException
37
public String getSQLTypeName() throws
SQLException
;
47
* @throws
SQLException
50
public Object[] getAttributes() throws
SQLException
;
63
* @throws
SQLException
67
throws
SQLException
;
/libcore/luni/src/main/java/javax/sql/
RowSetReader.java
20
import java.sql.
SQLException
;
41
* method (calling {@code execute} will cause an {@code
SQLException
} to be
50
* @throws
SQLException
55
public void readData(RowSetInternal theCaller) throws
SQLException
;
RowSetWriter.java
20
import java.sql.
SQLException
;
54
* @throws
SQLException
57
public boolean writeData(RowSetInternal theRowSet) throws
SQLException
;
RowSetInternal.java
22
import java.sql.
SQLException
;
35
* @throws
SQLException
38
public Connection getConnection() throws
SQLException
;
49
* @throws
SQLException
52
public ResultSet getOriginal() throws
SQLException
;
59
* @throws
SQLException
64
public ResultSet getOriginalRow() throws
SQLException
;
71
* @throws
SQLException
74
public Object[] getParams() throws
SQLException
;
83
* @throws
SQLException
[
all
...]
RowSet.java
32
import java.sql.
SQLException
;
88
* @throws
SQLException
91
public void clearParameters() throws
SQLException
;
110
* @throws
SQLException
116
public void execute() throws
SQLException
;
145
* @throws
SQLException
148
public boolean getEscapeProcessing() throws
SQLException
;
158
* @throws
SQLException
161
public int getMaxFieldSize() throws
SQLException
;
168
* @throws
SQLException
[
all
...]
CommonDataSource.java
21
import java.sql.
SQLException
;
36
* @throws
SQLException
39
public int getLoginTimeout() throws
SQLException
;
46
* @throws
SQLException
49
PrintWriter getLogWriter() throws
SQLException
;
57
* @throws
SQLException
60
void setLoginTimeout(int seconds) throws
SQLException
;
68
* @throws
SQLException
70
void setLogWriter(PrintWriter out) throws
SQLException
;
ConnectionPoolDataSource.java
20
import java.sql.
SQLException
;
38
* @throws
SQLException
41
public PooledConnection getPooledConnection() throws
SQLException
;
54
* @throws
SQLException
58
String thePassword) throws
SQLException
;
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TestHelper_Connection1.java
29
import java.sql.
SQLException
;
44
public void clearWarnings() throws
SQLException
{
47
public void close() throws
SQLException
{
50
public void commit() throws
SQLException
{
53
public Statement createStatement() throws
SQLException
{
59
throws
SQLException
{
64
throws
SQLException
{
68
public boolean getAutoCommit() throws
SQLException
{
72
public String getCatalog() throws
SQLException
{
76
public int getHoldability() throws
SQLException
{
[
all
...]
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
Impl_RowSet.java
32
import java.sql.
SQLException
;
48
public void clearParameters() throws
SQLException
{
51
public void execute() throws
SQLException
{
62
public boolean getEscapeProcessing() throws
SQLException
{
66
public int getMaxFieldSize() throws
SQLException
{
70
public int getMaxRows() throws
SQLException
{
78
public int getQueryTimeout() throws
SQLException
{
86
public Map<String, Class<?>> getTypeMap() throws
SQLException
{
90
public String getUrl() throws
SQLException
{
106
throws
SQLException
{
[
all
...]
/frameworks/base/core/java/android/database/sqlite/
SQLiteException.java
19
import android.database.
SQLException
;
24
public class SQLiteException extends
SQLException
{
Completed in 907 milliseconds
1
2
3
4
5
6
7