HomeSort by relevance Sort by last modified time
    Searched defs:sql (Results 26 - 50 of 173) sorted by null

12 3 4 5 6 7

  /libcore/luni/src/main/java/java/sql/
SQLTransientConnectionException.java 18 package java.sql;
SQLTransientException.java 18 package java.sql;
Savepoint.java 18 package java.sql;
Struct.java 18 package java.sql;
23 * An interface which provides facilities for manipulating an SQL structured type
24 * as a Java object. The {@code Struct} object has a value for each attribute of the SQL structured
30 * Gets the SQL Type name of the SQL structured type that this {@code
33 * @return the fully qualified name of SQL structured type.
40 * Gets the values of the attributes of this SQL structured type. This
53 * Gets the values of the attributes of this SQL structured type. This
54 * method uses the supplied type mapping to determine how to map SQL types
61 * a Map describing how SQL Type names are mapped to classes
    [all...]
Wrapper.java 18 package java.sql;
BatchUpdateException.java 18 package java.sql;
ClientInfoStatus.java 18 package java.sql;
Ref.java 18 package java.sql;
23 * This interface represents an SQL Ref - a data object containing a cursor
39 * Gets the fully-qualified SQL name of the SQL structured type that this
42 * @return the fully qualified name of the SQL structured type.
49 * Gets the SQL structured type instance referenced by this {@code Ref}.
51 * @return a Java object whose type is defined by the mapping for the SQL
64 * @return a Java object whose type is defined by the mapping for the SQL
76 * the {@code Object} representing the new SQL structured type
RowId.java 18 package java.sql;
21 * Maps SQL's ROWID type into Java.
29 * Returns an array of bytes representing the value of the corresponding SQL ROWID.
SQLClientInfoException.java 18 package java.sql;
SQLData.java 18 package java.sql;
21 * An interface for the custom mapping of an SQL <i>User Defined Type</i> (UDT)
23 * paired with the SQL name of the corresponding UDT.
26 * field for every attribute of an SQL type, but only one field, if the type is
27 * SQL {@code DISTINCT}. When the UDT is returned within a {@code ResultSet}, it
33 * into the SQL {@code UDT}.
36 * a tool requiring the name of the SQL {@code UDT}, the name
51 * Gets the SQL name of the <i>User Defined Type</i> (UDT) that this object
68 * the SQL type</li>
70 * ordered as they are in the SQL definition.</li
    [all...]
  /libcore/luni/src/main/java/javax/sql/
ConnectionEventListener.java 18 package javax.sql;
StatementEventListener.java 18 package javax.sql;
CommonDataSource.java 18 package javax.sql;
21 import java.sql.SQLException;
ConnectionEvent.java 18 package javax.sql;
21 import java.sql.SQLException;
RowSetListener.java 18 package javax.sql;
  /libcore/luni/src/test/java/tests/java/sql/
AllTests.java 17 package tests.java.sql;
23 * This is autogenerated source file. Includes tests for package tests.java.sql;
28 TestSuite suite = new TestSuite("All tests for package tests.java.sql;");
32 suite.addTestSuite(tests.java.sql.StressTest.class);
33 suite.addTestSuite(tests.java.sql.UpdateFunctionalityTest.class);
34 suite.addTestSuite(tests.java.sql.SelectFunctionalityTest.class);
35 suite.addTestSuite(tests.java.sql.UpdateFunctionalityTest2.class);
36 suite.addTestSuite(tests.java.sql.DeleteFunctionalityTest.class);
37 suite.addTestSuite(tests.java.sql.DatabaseMetaDataTest.class);
38 suite.addTestSuite(tests.java.sql.DatabaseMetaDataNotSupportedTest.class)
    [all...]
  /libcore/luni/src/test/java/tests/javax/sql/
RowSetReaderTest.java 1 package tests.javax.sql;
10 import javax.sql.RowSetInternal;
11 import javax.sql.RowSetReader;
17 * @tests {@link javax.sql.RowSetReader#readData(RowSetInternal)}
23 args = {javax.sql.RowSetInternal.class}
RowSetWriterTest.java 1 package tests.javax.sql;
10 import javax.sql.RowSetInternal;
11 import javax.sql.RowSetWriter;
17 * @tests {@link javax.sql.RowSetWriter#writeData(javax.sql.RowSetInternal)}
23 args = {javax.sql.RowSetInternal.class}
ConnectionEventListenerTest.java 1 package tests.javax.sql;
10 import javax.sql.ConnectionEvent;
11 import javax.sql.ConnectionEventListener;
17 * @tests {@link javax.sql.ConnectionEventListener#connectionClosed(javax.sql.ConnectionEvent)}
23 args = {javax.sql.ConnectionEvent.class}
30 * @test {@link javax.sql.ConnectionEventListener#connectionErrorOccurred(ConnectionEvent)}
36 args = {javax.sql.ConnectionEvent.class}
RowSetListenerTest.java 17 package tests.javax.sql;
26 import javax.sql.RowSetEvent;
27 import javax.sql.RowSetListener;
36 * Test method for {@link javax.sql.RowSetListener#cursorMoved(javax.sql.RowSetEvent)}.
42 args = {javax.sql.RowSetEvent.class}
49 * Test method for {@link javax.sql.RowSetListener#rowChanged(javax.sql.RowSetEvent)}.
55 args = {javax.sql.RowSetEvent.class}
62 * Test method for {@link javax.sql.RowSetListener#rowSetChanged(javax.sql.RowSetEvent)}
    [all...]
  /libcore/luni/src/test/java/tests/sql/
SavepointTest.java 17 package tests.sql;
25 import java.sql.Savepoint;
34 * Test method for {@link java.sql.Savepoint#getSavepointId()}.
47 * Test method for {@link java.sql.Savepoint#getSavepointName()}.
RefTest.java 17 package tests.sql;
25 import java.sql.Ref;
36 * Test method for {@link java.sql.Ref#getBaseTypeName()}.
49 * Test method for {@link java.sql.Ref#getObject()}.
62 * Test method for {@link java.sql.Ref#getObject(java.util.Map)}.
75 * Test method for {@link java.sql.Ref#setObject(java.lang.Object)}.
SQLDataTest.java 17 package tests.sql;
25 import java.sql.SQLData;
26 import java.sql.SQLInput;
27 import java.sql.SQLOutput;
34 * Test method for {@link java.sql.SQLData#getSQLTypeName()}.
47 * Test method for {@link java.sql.SQLData#readSQL(java.sql.SQLInput, java.lang.String)}.
60 * Test method for {@link java.sql.SQLData#writeSQL(java.sql.SQLOutput)}.
StructTest.java 17 package tests.sql;
25 import java.sql.Struct;
32 * Test method for {@link java.sql.Struct#getSQLTypeName()}.
46 * Test method for {@link java.sql.Struct#getAttributes()}.
60 * Test method for {@link java.sql.Struct#getAttributes(java.util.Map)}.

Completed in 1049 milliseconds

12 3 4 5 6 7