• Home
  • Raw
  • Download

Lines Matching refs:sql

3 import java.sql.*;
6 public class JDBCResultSet implements java.sql.ResultSet {
304 public java.sql.Time getTime(int columnIndex) throws SQLException {
308 private java.sql.Time internalGetTime(int columnIndex,
319 return new java.sql.Time(SQLite.Database.long_from_julian(lastg));
321 return java.sql.Time.valueOf(lastg);
325 return java.sql.Time.valueOf(lastg);
327 return new java.sql.Time(SQLite.Database.long_from_julian(lastg));
336 public java.sql.Time getTime(String columnName) throws SQLException {
341 public java.sql.Time getTime(int columnIndex, java.util.Calendar cal)
346 public java.sql.Time getTime(String columnName, java.util.Calendar cal)
352 public java.sql.Timestamp getTimestamp(int columnIndex)
357 private java.sql.Timestamp internalGetTimestamp(int columnIndex,
368 return new java.sql.Timestamp(SQLite.Database.long_from_julian(lastg));
370 return java.sql.Timestamp.valueOf(lastg);
374 return java.sql.Timestamp.valueOf(lastg);
376 return new java.sql.Timestamp(SQLite.Database.long_from_julian(lastg));
385 public java.sql.Timestamp getTimestamp(String columnName)
391 public java.sql.Timestamp getTimestamp(int columnIndex,
397 public java.sql.Timestamp getTimestamp(String columnName,
404 public java.sql.Date getDate(int columnIndex) throws SQLException {
408 private java.sql.Date internalGetDate(int columnIndex,
419 return new java.sql.Date(SQLite.Database.long_from_julian(lastg));
421 return java.sql.Date.valueOf(lastg);
425 return java.sql.Date.valueOf(lastg);
427 return new java.sql.Date(SQLite.Database.long_from_julian(lastg));
436 public java.sql.Date getDate(String columnName) throws SQLException {
441 public java.sql.Date getDate(int columnIndex, java.util.Calendar cal)
446 public java.sql.Date getDate(String columnName, java.util.Calendar cal)
683 public java.sql.Ref getRef(int columnIndex) throws SQLException {
687 public java.sql.Ref getRef(String columnName) throws SQLException {
692 public java.sql.Blob getBlob(int columnIndex) throws SQLException {
696 public java.sql.Blob getBlob(String columnName) throws SQLException {
701 public java.sql.Clob getClob(int columnIndex) throws SQLException {
705 public java.sql.Clob getClob(String columnName) throws SQLException {
710 public java.sql.Array getArray(int columnIndex) throws SQLException {
714 public java.sql.Array getArray(String columnName) throws SQLException {
1090 public void updateDate(int colIndex, java.sql.Date d) throws SQLException {
1099 public void updateTime(int colIndex, java.sql.Time t) throws SQLException {
1108 public void updateTimestamp(int colIndex, java.sql.Timestamp t)
1198 public void updateDate(String colName, java.sql.Date d)
1204 public void updateTime(String colName, java.sql.Time t)
1210 public void updateTimestamp(String colName, java.sql.Timestamp t)
1288 public void updateRef(int colIndex, java.sql.Ref x) throws SQLException {
1292 public void updateRef(String colName, java.sql.Ref x)
1298 public void updateBlob(int colIndex, java.sql.Blob x)
1303 public void updateBlob(String colName, java.sql.Blob x)
1309 public void updateClob(int colIndex, java.sql.Clob x)
1314 public void updateClob(String colName, java.sql.Clob x)
1320 public void updateArray(int colIndex, java.sql.Array x)
1325 public void updateArray(String colName, java.sql.Array x)