Java Doc for PreparedStatement_2_0.java in  » Database-JDBC-Connection-Pool » octopus » com » internetcds » jdbc » tds » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Database JDBC Connection Pool » octopus » com.internetcds.jdbc.tds 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.internetcds.jdbc.tds.Statement
      com.internetcds.jdbc.tds.PreparedStatement_base
         com.internetcds.jdbc.tds.PreparedStatement_2_0

PreparedStatement_2_0
public class PreparedStatement_2_0 extends com.internetcds.jdbc.tds.PreparedStatement_base implements java.sql.PreparedStatement(Code)


Field Summary
final public static  StringcvsVersion
    

Constructor Summary
public  PreparedStatement_2_0(java.sql.Connection conn_, Tds tds_, String sql)
    

Method Summary
public  voidaddBatch()
     JDBC 2.0 Adds a set of parameters to the batch.
public  booleanexecute(String sql, int autoGeneratedKeys)
    
public  booleanexecute(String sql, int[] columnIndexes)
    
public  booleanexecute(String sql, String[] columnNames)
    
public  intexecuteUpdate(String sql, int autoGeneratedKeys)
    
public  intexecuteUpdate(String sql, int[] columnIndexes)
    
public  intexecuteUpdate(String sql, String[] columnNames)
    
public  ArraygetArray(String str)
    
public  BigDecimalgetBigDecimal(String str)
    
public  BlobgetBlob(String str)
    
public  booleangetBoolean(String str)
    
public  bytegetByte(String str)
    
public  byte[]getBytes(String str)
    
public  ClobgetClob(String str)
    
public  DategetDate(String str)
    
public  DategetDate(String str, Calendar c)
    
public  doublegetDouble(String str)
    
public  floatgetFloat(String str)
    
public  ResultSetgetGeneratedKeys()
    
public  intgetInt(String str)
    
public  longgetLong(String str)
    
public  java.sql.ResultSetMetaDatagetMetaData()
     JDBC 2.0 Gets the number, types and properties of a ResultSet's columns.
public  booleangetMoreResults(int current)
    
public  ObjectgetObject(String str)
    
public  ObjectgetObject(String str, Map m)
    
public  java.sql.ParameterMetaDatagetParameterMetaData()
    
public  RefgetRef(String str)
    
public  intgetResultSetHoldability()
    
public  shortgetShort(String str)
    
public  StringgetString(String str)
    
public  TimegetTime(String str)
    
public  TimegetTime(String str, Calendar m)
    
public  TimestampgetTimestamp(String str)
    
public  TimestampgetTimestamp(String str, Calendar m)
    
public  URLgetURL(int url)
    
public  URLgetURL(String str)
    
public  voidregisterOutParameter(String str, int x)
    
public  voidregisterOutParameter(String str, int x, int y)
    
public  voidregisterOutParameter(String str1, String str2)
    
public  voidregisterOutParameter(String str1, int x, String str2)
    
public  voidsetArray(int i, java.sql.Array x)
     JDBC 2.0 Sets an Array parameter.
public  voidsetAsciiStream(String str, InputStream b, int x)
    
public  voidsetAsciiStream(int parameterIndex, InputStream x)
    
public  voidsetAsciiStream(int parameterIndex, InputStream x, long length)
    
public  voidsetBigDecimal(String str, BigDecimal b)
    
public  voidsetBinaryStream(String str, InputStream b, int x)
    
public  voidsetBinaryStream(int parameterIndex, InputStream x)
    
public  voidsetBinaryStream(int parameterIndex, InputStream x, long length)
    
public  voidsetBlob(int i, java.sql.Blob x)
     JDBC 2.0 Sets a BLOB parameter.
public  voidsetBlob(int parameterIndex, InputStream inputStream)
    
public  voidsetBlob(int parameterIndex, InputStream inputStream, long length)
    
public  voidsetBoolean(String str, boolean b)
    
public  voidsetByte(String str, byte b)
    
public  voidsetBytes(String str, byte[] b)
    
public  voidsetCharacterStream(int parameterIndex, java.io.Reader reader, int length)
     JDBC 2.0 Sets the designated parameter to the given Reader object, which is the given number of characters long. When a very large UNICODE value is input to a LONGVARCHAR parameter, it may be more practical to send it via a java.io.Reader.
public  voidsetCharacterStream(String str, Reader b, int x)
    
public  voidsetCharacterStream(int parameterIndex, Reader reader)
    
public  voidsetCharacterStream(int parameterIndex, Reader reader, long length)
    
public  voidsetClob(int i, java.sql.Clob x)
     JDBC 2.0 Sets a CLOB parameter.
public  voidsetClob(int parameterIndex, Reader reader)
    
public  voidsetClob(int parameterIndex, Reader reader, long length)
    
public  voidsetDate(int parameterIndex, java.sql.Date x, java.util.Calendar cal)
     JDBC 2.0 Sets the designated parameter to a java.sql.Date value, using the given Calendar object.
public  voidsetDate(String str, Date b)
    
public  voidsetDate(String str, Date b, Calendar cal)
    
public  voidsetDouble(String str, double b)
    
public  voidsetFloat(String str, float b)
    
public  voidsetInt(String str, int b)
    
public  voidsetLong(String str, long b)
    
public  voidsetNCharacterStream(int parameterIndex, Reader value)
    
public  voidsetNCharacterStream(int parameterIndex, Reader value, long length)
    
public  voidsetNClob(int parameterIndex, NClob value)
    
public  voidsetNClob(int parameterIndex, Reader reader)
    
public  voidsetNClob(int parameterIndex, Reader reader, long length)
    
public  voidsetNString(int parameterIndex, String value)
    
public  voidsetNull(int paramIndex, int sqlType, String typeName)
     JDBC 2.0 Sets the designated parameter to SQL NULL.
public  voidsetNull(String column, int url)
    
public  voidsetNull(String str, int b, String str2)
    
public  voidsetObject(String str, Object b, int x, int y)
    
public  voidsetObject(String str, Object b, int x)
    
public  voidsetObject(String str, Object b)
    
public  voidsetRef(int i, java.sql.Ref x)
     JDBC 2.0 Sets a REF(<structured-type>) parameter.
public  voidsetRowId(int parameterIndex, RowId x)
    
public  voidsetSQLXML(int parameterIndex, SQLXML xmlObject)
    
public  voidsetShort(String str, short b)
    
public  voidsetString(String str, String b)
    
public  voidsetTime(int parameterIndex, java.sql.Time x, java.util.Calendar cal)
     JDBC 2.0 Sets the designated parameter to a java.sql.Time value, using the given Calendar object.
public  voidsetTime(String str, Time b)
    
public  voidsetTime(String str, Time b, Calendar cal)
    
public  voidsetTimestamp(int parameterIndex, java.sql.Timestamp x, java.util.Calendar cal)
     JDBC 2.0 Sets the designated parameter to a java.sql.Timestamp value, using the given Calendar object.
public  voidsetTimestamp(String str, Timestamp b)
    
public  voidsetTimestamp(String str, Timestamp b, Calendar cal)
    
public  voidsetURL(int current, URL url)
    
public  voidsetURL(String current, URL url)
    

Field Detail
cvsVersion
final public static String cvsVersion(Code)




Constructor Detail
PreparedStatement_2_0
public PreparedStatement_2_0(java.sql.Connection conn_, Tds tds_, String sql) throws java.sql.SQLException(Code)




Method Detail
addBatch
public void addBatch() throws java.sql.SQLException(Code)
JDBC 2.0 Adds a set of parameters to the batch.
exception:
  SQLException - if a database access error occurs
See Also:   Statement.addBatch



execute
public boolean execute(String sql, int autoGeneratedKeys) throws SQLException(Code)



execute
public boolean execute(String sql, int[] columnIndexes) throws SQLException(Code)



execute
public boolean execute(String sql, String[] columnNames) throws SQLException(Code)



executeUpdate
public int executeUpdate(String sql, int autoGeneratedKeys) throws SQLException(Code)



executeUpdate
public int executeUpdate(String sql, int[] columnIndexes) throws SQLException(Code)



executeUpdate
public int executeUpdate(String sql, String[] columnNames) throws SQLException(Code)



getArray
public Array getArray(String str) throws SQLException(Code)



getBigDecimal
public BigDecimal getBigDecimal(String str) throws SQLException(Code)



getBlob
public Blob getBlob(String str) throws SQLException(Code)



getBoolean
public boolean getBoolean(String str) throws SQLException(Code)



getByte
public byte getByte(String str) throws SQLException(Code)



getBytes
public byte[] getBytes(String str) throws SQLException(Code)



getClob
public Clob getClob(String str) throws SQLException(Code)



getDate
public Date getDate(String str) throws SQLException(Code)



getDate
public Date getDate(String str, Calendar c) throws SQLException(Code)



getDouble
public double getDouble(String str) throws SQLException(Code)



getFloat
public float getFloat(String str) throws SQLException(Code)



getGeneratedKeys
public ResultSet getGeneratedKeys() throws SQLException(Code)



getInt
public int getInt(String str) throws SQLException(Code)



getLong
public long getLong(String str) throws SQLException(Code)



getMetaData
public java.sql.ResultSetMetaData getMetaData() throws java.sql.SQLException(Code)
JDBC 2.0 Gets the number, types and properties of a ResultSet's columns. the description of a ResultSet's columns
exception:
  SQLException - if a database access error occurs



getMoreResults
public boolean getMoreResults(int current) throws SQLException(Code)



getObject
public Object getObject(String str) throws SQLException(Code)



getObject
public Object getObject(String str, Map m) throws SQLException(Code)



getParameterMetaData
public java.sql.ParameterMetaData getParameterMetaData() throws SQLException(Code)



getRef
public Ref getRef(String str) throws SQLException(Code)



getResultSetHoldability
public int getResultSetHoldability() throws SQLException(Code)



getShort
public short getShort(String str) throws SQLException(Code)



getString
public String getString(String str) throws SQLException(Code)



getTime
public Time getTime(String str) throws SQLException(Code)



getTime
public Time getTime(String str, Calendar m) throws SQLException(Code)



getTimestamp
public Timestamp getTimestamp(String str) throws SQLException(Code)



getTimestamp
public Timestamp getTimestamp(String str, Calendar m) throws SQLException(Code)



getURL
public URL getURL(int url) throws SQLException(Code)



getURL
public URL getURL(String str) throws SQLException(Code)



registerOutParameter
public void registerOutParameter(String str, int x) throws SQLException(Code)



registerOutParameter
public void registerOutParameter(String str, int x, int y) throws SQLException(Code)



registerOutParameter
public void registerOutParameter(String str1, String str2) throws SQLException(Code)



registerOutParameter
public void registerOutParameter(String str1, int x, String str2) throws SQLException(Code)



setArray
public void setArray(int i, java.sql.Array x) throws java.sql.SQLException(Code)
JDBC 2.0 Sets an Array parameter.
Parameters:
  i - the first parameter is 1, the second is 2, ...
Parameters:
  x - an object representing an SQL array
exception:
  SQLException - if a database access error occurs



setAsciiStream
public void setAsciiStream(String str, InputStream b, int x) throws SQLException(Code)



setAsciiStream
public void setAsciiStream(int parameterIndex, InputStream x) throws SQLException(Code)



setAsciiStream
public void setAsciiStream(int parameterIndex, InputStream x, long length) throws SQLException(Code)



setBigDecimal
public void setBigDecimal(String str, BigDecimal b) throws SQLException(Code)



setBinaryStream
public void setBinaryStream(String str, InputStream b, int x) throws SQLException(Code)



setBinaryStream
public void setBinaryStream(int parameterIndex, InputStream x) throws SQLException(Code)



setBinaryStream
public void setBinaryStream(int parameterIndex, InputStream x, long length) throws SQLException(Code)



setBlob
public void setBlob(int i, java.sql.Blob x) throws java.sql.SQLException(Code)
JDBC 2.0 Sets a BLOB parameter.
Parameters:
  i - the first parameter is 1, the second is 2, ...
Parameters:
  x - an object representing a BLOB
exception:
  SQLException - if a database access error occurs



setBlob
public void setBlob(int parameterIndex, InputStream inputStream) throws SQLException(Code)



setBlob
public void setBlob(int parameterIndex, InputStream inputStream, long length) throws SQLException(Code)



setBoolean
public void setBoolean(String str, boolean b) throws SQLException(Code)



setByte
public void setByte(String str, byte b) throws SQLException(Code)



setBytes
public void setBytes(String str, byte[] b) throws SQLException(Code)



setCharacterStream
public void setCharacterStream(int parameterIndex, java.io.Reader reader, int length) throws java.sql.SQLException(Code)
JDBC 2.0 Sets the designated parameter to the given Reader object, which is the given number of characters long. When a very large UNICODE value is input to a LONGVARCHAR parameter, it may be more practical to send it via a java.io.Reader. JDBC will read the data from the stream as needed, until it reaches end-of-file. The JDBC driver will do any necessary conversion from UNICODE to the database char format.

Note: This stream object can either be a standard Java stream object or your own subclass that implements the standard interface.
Parameters:
  parameterIndex - the first parameter is 1, the second is 2, ...
Parameters:
  x - the java reader which contains the UNICODE data
Parameters:
  length - the number of characters in the stream
exception:
  SQLException - if a database access error occurs




setCharacterStream
public void setCharacterStream(String str, Reader b, int x) throws SQLException(Code)



setCharacterStream
public void setCharacterStream(int parameterIndex, Reader reader) throws SQLException(Code)



setCharacterStream
public void setCharacterStream(int parameterIndex, Reader reader, long length) throws SQLException(Code)



setClob
public void setClob(int i, java.sql.Clob x) throws java.sql.SQLException(Code)
JDBC 2.0 Sets a CLOB parameter.
Parameters:
  i - the first parameter is 1, the second is 2, ...
Parameters:
  x - an object representing a CLOB
exception:
  SQLException - if a database access error occurs



setClob
public void setClob(int parameterIndex, Reader reader) throws SQLException(Code)



setClob
public void setClob(int parameterIndex, Reader reader, long length) throws SQLException(Code)



setDate
public void setDate(int parameterIndex, java.sql.Date x, java.util.Calendar cal) throws java.sql.SQLException(Code)
JDBC 2.0 Sets the designated parameter to a java.sql.Date value, using the given Calendar object. The driver uses the Calendar object to construct an SQL DATE, which the driver then sends to the database. With a a Calendar object, the driver can calculate the date taking into account a custom timezone and locale. If no Calendar object is specified, the driver uses the default timezone and locale.
Parameters:
  parameterIndex - the first parameter is 1, the second is 2, ...
Parameters:
  x - the parameter value
Parameters:
  cal - the Calendar object the driver will useto construct the date
exception:
  SQLException - if a database access error occurs



setDate
public void setDate(String str, Date b) throws SQLException(Code)



setDate
public void setDate(String str, Date b, Calendar cal) throws SQLException(Code)



setDouble
public void setDouble(String str, double b) throws SQLException(Code)



setFloat
public void setFloat(String str, float b) throws SQLException(Code)



setInt
public void setInt(String str, int b) throws SQLException(Code)



setLong
public void setLong(String str, long b) throws SQLException(Code)



setNCharacterStream
public void setNCharacterStream(int parameterIndex, Reader value) throws SQLException(Code)



setNCharacterStream
public void setNCharacterStream(int parameterIndex, Reader value, long length) throws SQLException(Code)



setNClob
public void setNClob(int parameterIndex, NClob value) throws SQLException(Code)



setNClob
public void setNClob(int parameterIndex, Reader reader) throws SQLException(Code)



setNClob
public void setNClob(int parameterIndex, Reader reader, long length) throws SQLException(Code)



setNString
public void setNString(int parameterIndex, String value) throws SQLException(Code)



setNull
public void setNull(int paramIndex, int sqlType, String typeName) throws java.sql.SQLException(Code)
JDBC 2.0 Sets the designated parameter to SQL NULL. This version of setNull should be used for user-named types and REF type parameters. Examples of user-named types include: STRUCT, DISTINCT, JAVA_OBJECT, and named array types.

Note: To be portable, applications must give the SQL type code and the fully-qualified SQL type name when specifying a NULL user-defined or REF parameter. In the case of a user-named type the name is the type name of the parameter itself. For a REF parameter the name is the type name of the referenced type. If a JDBC driver does not need the type code or type name information, it may ignore it. Although it is intended for user-named and Ref parameters, this method may be used to set a null parameter of any JDBC type. If the parameter does not have a user-named or REF type, the given typeName is ignored.
Parameters:
  parameterIndex - the first parameter is 1, the second is 2, ...
Parameters:
  sqlType - a value from java.sql.Types
Parameters:
  typeName - the fully-qualified name of an SQL user-named type,ignored if the parameter is not a user-named type or REF
exception:
  SQLException - if a database access error occurs




setNull
public void setNull(String column, int url) throws SQLException(Code)



setNull
public void setNull(String str, int b, String str2) throws SQLException(Code)



setObject
public void setObject(String str, Object b, int x, int y) throws SQLException(Code)



setObject
public void setObject(String str, Object b, int x) throws SQLException(Code)



setObject
public void setObject(String str, Object b) throws SQLException(Code)



setRef
public void setRef(int i, java.sql.Ref x) throws java.sql.SQLException(Code)
JDBC 2.0 Sets a REF(<structured-type>) parameter.
Parameters:
  i - the first parameter is 1, the second is 2, ...
Parameters:
  x - an object representing data of an SQL REF Type
exception:
  SQLException - if a database access error occurs



setRowId
public void setRowId(int parameterIndex, RowId x) throws SQLException(Code)



setSQLXML
public void setSQLXML(int parameterIndex, SQLXML xmlObject) throws SQLException(Code)



setShort
public void setShort(String str, short b) throws SQLException(Code)



setString
public void setString(String str, String b) throws SQLException(Code)



setTime
public void setTime(int parameterIndex, java.sql.Time x, java.util.Calendar cal) throws java.sql.SQLException(Code)
JDBC 2.0 Sets the designated parameter to a java.sql.Time value, using the given Calendar object. The driver uses the Calendar object to construct an SQL TIME, which the driver then sends to the database. With a a Calendar object, the driver can calculate the time taking into account a custom timezone and locale. If no Calendar object is specified, the driver uses the default timezone and locale.
Parameters:
  parameterIndex - the first parameter is 1, the second is 2, ...
Parameters:
  x - the parameter value
Parameters:
  cal - the Calendar object the driver will useto construct the time
exception:
  SQLException - if a database access error occurs



setTime
public void setTime(String str, Time b) throws SQLException(Code)



setTime
public void setTime(String str, Time b, Calendar cal) throws SQLException(Code)



setTimestamp
public void setTimestamp(int parameterIndex, java.sql.Timestamp x, java.util.Calendar cal) throws java.sql.SQLException(Code)
JDBC 2.0 Sets the designated parameter to a java.sql.Timestamp value, using the given Calendar object. The driver uses the Calendar object to construct an SQL TIMESTAMP, which the driver then sends to the database. With a a Calendar object, the driver can calculate the timestamp taking into account a custom timezone and locale. If no Calendar object is specified, the driver uses the default timezone and locale.
Parameters:
  parameterIndex - the first parameter is 1, the second is 2, ...
Parameters:
  x - the parameter value
Parameters:
  cal - the Calendar object the driver will useto construct the timestamp
exception:
  SQLException - if a database access error occurs



setTimestamp
public void setTimestamp(String str, Timestamp b) throws SQLException(Code)



setTimestamp
public void setTimestamp(String str, Timestamp b, Calendar cal) throws SQLException(Code)



setURL
public void setURL(int current, URL url) throws SQLException(Code)



setURL
public void setURL(String current, URL url) throws SQLException(Code)



Fields inherited from com.internetcds.jdbc.tds.PreparedStatement_base
final public static String cvsVersion(Code)(Java Doc)
ParameterListItem[] parameterList(Code)(Java Doc)
Vector procedureCache(Code)(Java Doc)
String rawQueryString(Code)(Java Doc)

Methods inherited from com.internetcds.jdbc.tds.PreparedStatement_base
protected void NotImplemented() throws java.sql.SQLException(Code)(Java Doc)
public void clearParameters() throws SQLException(Code)(Java Doc)
public void dropAllProcedures()(Code)(Java Doc)
public boolean execute() throws SQLException(Code)(Java Doc)
protected boolean executeCall(String name, ParameterListItem[] formalParameterList, ParameterListItem[] actualParameterList) throws SQLException(Code)(Java Doc)
public java.sql.ResultSet executeQuery() throws SQLException(Code)(Java Doc)
public int executeUpdate() throws SQLException(Code)(Java Doc)
public static void main(String args) throws java.lang.ClassNotFoundException, java.lang.IllegalAccessException, java.lang.InstantiationException, SQLException(Code)(Java Doc)
public void setAsciiStream(int parameterIndex, java.io.InputStream x, int length) throws SQLException(Code)(Java Doc)
public void setBigDecimal(int parameterIndex, BigDecimal x) throws SQLException(Code)(Java Doc)
public void setBinaryStream(int parameterIndex, java.io.InputStream x, int length) throws SQLException(Code)(Java Doc)
public void setBoolean(int parameterIndex, boolean x) throws SQLException(Code)(Java Doc)
public void setByte(int index, byte x) throws SQLException(Code)(Java Doc)
public void setBytes(int parameterIndex, byte x) throws SQLException(Code)(Java Doc)
public void setDate(int parameterIndex, java.sql.Date value) throws SQLException(Code)(Java Doc)
public void setDouble(int parameterIndex, double value) throws SQLException(Code)(Java Doc)
public void setFloat(int parameterIndex, float value) throws SQLException(Code)(Java Doc)
public void setInt(int index, int value) throws SQLException(Code)(Java Doc)
public void setLong(int parameterIndex, long value) throws SQLException(Code)(Java Doc)
public void setNull(int index, int type) throws SQLException(Code)(Java Doc)
public void setObject(int parameterIndex, Object x) throws SQLException(Code)(Java Doc)
public void setObject(int parameterIndex, Object x, int targetSqlType) throws SQLException(Code)(Java Doc)
public void setObject(int parameterIndex, Object x, int targetSqlType, int scale) throws SQLException(Code)(Java Doc)
public void setShort(int index, short value) throws SQLException(Code)(Java Doc)
public void setString(int index, String str) throws SQLException(Code)(Java Doc)
public void setTime(int parameterIndex, java.sql.Time x) throws SQLException(Code)(Java Doc)
public void setTimestamp(int index, java.sql.Timestamp value) throws SQLException(Code)(Java Doc)
public void setUnicodeStream(int parameterIndex, java.io.InputStream x, int length) throws SQLException(Code)(Java Doc)

Fields inherited from com.internetcds.jdbc.tds.Statement
final public static String cvsVersion(Code)(Java Doc)
protected java.sql.ResultSet results(Code)(Java Doc)
protected Tds tds(Code)(Java Doc)
protected int timeout(Code)(Java Doc)
protected int updateCount(Code)(Java Doc)
protected SQLWarningChain warningChain(Code)(Java Doc)

Methods inherited from com.internetcds.jdbc.tds.Statement
public void addBatch(String sql) throws SQLException(Code)(Java Doc)
public void cancel() throws SQLException(Code)(Java Doc)
public void clearBatch() throws SQLException(Code)(Java Doc)
public void clearWarnings() throws SQLException(Code)(Java Doc)
public void close() throws SQLException(Code)(Java Doc)
protected void closeResults() throws java.sql.SQLException(Code)(Java Doc)
public void commit() throws java.sql.SQLException, java.io.IOException, com.internetcds.jdbc.tds.TdsUnknownPacketSubType, com.internetcds.jdbc.tds.TdsException(Code)(Java Doc)
public boolean execute(String sql) throws SQLException(Code)(Java Doc)
public boolean execute(String sql, int autoGeneratedKeys) throws SQLException(Code)(Java Doc)
public boolean execute(String sql, int[] columnIndexes) throws SQLException(Code)(Java Doc)
public boolean execute(String sql, String[] columnNames) throws SQLException(Code)(Java Doc)
public int[] executeBatch() throws SQLException(Code)(Java Doc)
public java.sql.ResultSet executeQuery(String sql) throws SQLException(Code)(Java Doc)
public int executeUpdate(String sql) throws SQLException(Code)(Java Doc)
public int executeUpdate(String sql, int autoGeneratedKeys) throws SQLException(Code)(Java Doc)
public int executeUpdate(String sql, int[] columnIndexes) throws SQLException(Code)(Java Doc)
public int executeUpdate(String sql, String[] columnNames) throws SQLException(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
public java.sql.Connection getConnection() throws SQLException(Code)(Java Doc)
public int getFetchDirection() throws SQLException(Code)(Java Doc)
public int getFetchSize() throws SQLException(Code)(Java Doc)
public ResultSet getGeneratedKeys() throws SQLException(Code)(Java Doc)
public int getMaxFieldSize() throws SQLException(Code)(Java Doc)
public int getMaxRows() throws SQLException(Code)(Java Doc)
public boolean getMoreResults() throws SQLException(Code)(Java Doc)
public boolean getMoreResults(int current) throws SQLException(Code)(Java Doc)
public int getQueryTimeout() throws SQLException(Code)(Java Doc)
public java.sql.ResultSet getResultSet() throws SQLException(Code)(Java Doc)
public int getResultSetConcurrency() throws SQLException(Code)(Java Doc)
public int getResultSetHoldability() throws SQLException(Code)(Java Doc)
public int getResultSetType() throws SQLException(Code)(Java Doc)
public int getUpdateCount() throws SQLException(Code)(Java Doc)
public SQLWarning getWarnings() throws SQLException(Code)(Java Doc)
public boolean isClosed()(Code)(Java Doc)
public boolean isPoolable() throws SQLException(Code)(Java Doc)
public boolean isWrapperFor(Class iface) throws SQLException(Code)(Java Doc)
public static void main(String args) throws java.lang.ClassNotFoundException, java.lang.IllegalAccessException, java.lang.InstantiationException, SQLException(Code)(Java Doc)
public void rollback() throws java.sql.SQLException, java.io.IOException, com.internetcds.jdbc.tds.TdsUnknownPacketSubType, com.internetcds.jdbc.tds.TdsException(Code)(Java Doc)
public void setCursorName(String name) throws SQLException(Code)(Java Doc)
public void setEscapeProcessing(boolean enable) throws SQLException(Code)(Java Doc)
public void setFetchDirection(int direction) throws SQLException(Code)(Java Doc)
public void setFetchSize(int rows) throws SQLException(Code)(Java Doc)
public void setMaxFieldSize(int max) throws SQLException(Code)(Java Doc)
public void setMaxRows(int max) throws SQLException(Code)(Java Doc)
public void setPoolable(boolean poolable) throws SQLException(Code)(Java Doc)
public void setQueryTimeout(int seconds) throws SQLException(Code)(Java Doc)
protected void startResultSet() throws SQLException(Code)(Java Doc)
public T unwrap(Class<T> iface) throws SQLException(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.