⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 axioncommand.html

📁 Axion 是一个小型的
💻 HTML
📖 第 1 页 / 共 2 页
字号:
</TR>
</TABLE>
&nbsp;
<P>

<!-- ============ FIELD DETAIL =========== -->


<!-- ========= CONSTRUCTOR DETAIL ======== -->


<!-- ============ METHOD DETAIL ========== -->

<A NAME="method_detail"><!-- --></A><TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=1><FONT SIZE="+2">
<B>Method Detail</B></FONT></TD>
</TR>
</TABLE>

<A NAME="execute(org.axiondb.Database)"><!-- --></A><H3>
execute</H3>
<PRE>
public boolean <B>execute</B>(<A HREF="../../org/axiondb/Database.html">Database</A>&nbsp;db)                throws <A HREF="../../org/axiondb/AxionException.html">AxionException</A></PRE>
<DL>
<DD>Executes an SQL statement that may return multiple results.<DD><DL>
<DT><B>Returns:</B><DD><tt>true</tt> if one or more <A HREF="http://java.sun.com/products/jdk/1.3/docs/api/java/sql/ResultSet.html"><CODE>ResultSet</CODE></A>s  were generated, <tt>false</tt> otherwise<DT><B>See Also: </B><DD><A HREF="http://java.sun.com/products/jdk/1.3/docs/api/java/sql/Statement.html#execute(java.lang.String)"><CODE>Statement.execute(java.lang.String)</CODE></A>, 
<A HREF="http://java.sun.com/products/jdk/1.3/docs/api/java/sql/PreparedStatement.html#execute()"><CODE>PreparedStatement.execute()</CODE></A></DL>
</DD>
</DL>
<HR>

<A NAME="executeUpdate(org.axiondb.Database)"><!-- --></A><H3>
executeUpdate</H3>
<PRE>
public int <B>executeUpdate</B>(<A HREF="../../org/axiondb/Database.html">Database</A>&nbsp;db)                  throws <A HREF="../../org/axiondb/AxionException.html">AxionException</A></PRE>
<DL>
<DD>Executes an SQL that may add, delete or modify zero or more  rows within the database, such as an INSERT, UPDATE or DELETE statement.  In addition, SQL statements that return nothing, such as SQL  DDL statements, can be executed via this method.<DD><DL>
<DT><B>Returns:</B><DD>the number of rows modified<DT><B>See Also: </B><DD><A HREF="http://java.sun.com/products/jdk/1.3/docs/api/java/sql/Statement.html#executeUpdate(java.lang.String)"><CODE>Statement.executeUpdate(java.lang.String)</CODE></A>, 
<A HREF="http://java.sun.com/products/jdk/1.3/docs/api/java/sql/PreparedStatement.html#executeUpdate()"><CODE>PreparedStatement.executeUpdate()</CODE></A></DL>
</DD>
</DL>
<HR>

<A NAME="executeQuery(org.axiondb.Database)"><!-- --></A><H3>
executeQuery</H3>
<PRE>
public <A HREF="../../org/axiondb/jdbc/AxionResultSet.html">AxionResultSet</A> <B>executeQuery</B>(<A HREF="../../org/axiondb/Database.html">Database</A>&nbsp;db)                            throws <A HREF="../../org/axiondb/AxionException.html">AxionException</A></PRE>
<DL>
<DD>Executes an SQL statement that returns a single  <A HREF="http://java.sun.com/products/jdk/1.3/docs/api/java/sql/ResultSet.html"><CODE>ResultSet</CODE></A> object such as  a SELECT statement.<DD><DL>
<DT><B>Returns:</B><DD>the generated <A HREF="http://java.sun.com/products/jdk/1.3/docs/api/java/sql/ResultSet.html"><CODE>ResultSet</CODE></A><DT><B>See Also: </B><DD><A HREF="http://java.sun.com/products/jdk/1.3/docs/api/java/sql/Statement.html#executeQuery(java.lang.String)"><CODE>Statement.executeQuery(java.lang.String)</CODE></A>, 
<A HREF="http://java.sun.com/products/jdk/1.3/docs/api/java/sql/PreparedStatement.html#executeQuery()"><CODE>PreparedStatement.executeQuery()</CODE></A></DL>
</DD>
</DL>
<HR>

<A NAME="getResultSet()"><!-- --></A><H3>
getResultSet</H3>
<PRE>
public <A HREF="http://java.sun.com/products/jdk/1.3/docs/api/java/sql/ResultSet.html">ResultSet</A> <B>getResultSet</B>()</PRE>
<DL>
<DD>Returns the last <A HREF="http://java.sun.com/products/jdk/1.3/docs/api/java/sql/ResultSet.html"><CODE>ResultSet</CODE></A> generated by  <A HREF="../../org/axiondb/AxionCommand.html#execute(org.axiondb.Database)"><CODE>execute(org.axiondb.Database)</CODE></A> or <A HREF="../../org/axiondb/AxionCommand.html#executeQuery(org.axiondb.Database)"><CODE>executeQuery(org.axiondb.Database)</CODE></A>.</DL>
<HR>

<A NAME="getEffectedRowCount()"><!-- --></A><H3>
getEffectedRowCount</H3>
<PRE>
public int <B>getEffectedRowCount</B>()</PRE>
<DL>
<DD>Returns the last row count generated by  <A HREF="../../org/axiondb/AxionCommand.html#execute(org.axiondb.Database)"><CODE>execute(org.axiondb.Database)</CODE></A> or <A HREF="../../org/axiondb/AxionCommand.html#executeUpdate(org.axiondb.Database)"><CODE>executeUpdate(org.axiondb.Database)</CODE></A>.</DL>
<HR>

<A NAME="bind(int, java.lang.Object)"><!-- --></A><H3>
bind</H3>
<PRE>
public void <B>bind</B>(int&nbsp;index,                 <A HREF="http://java.sun.com/products/jdk/1.3/docs/api/java/lang/Object.html">Object</A>&nbsp;value)          throws <A HREF="../../org/axiondb/AxionException.html">AxionException</A></PRE>
<DL>
<DD>Sets the <i>value</i> of the <i>i</i><sup>th</sup>  bind variable within this command.<DD><DL>
<DT><B>Parameters:</B><DD><CODE>index</CODE> - the one-based index of the variable<DD><CODE>value</CODE> - the value to bind the variable to</DL>
</DD>
</DL>
<HR>

<A NAME="clearBindings()"><!-- --></A><H3>
clearBindings</H3>
<PRE>
public void <B>clearBindings</B>()                   throws <A HREF="../../org/axiondb/AxionException.html">AxionException</A></PRE>
<DL>
<DD>Clears all bind variables within this command.</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>

<!-- ========== START OF NAVBAR ========== -->
<A NAME="navbar_bottom"><!-- --></A><TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A><TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">
  <TR ALIGN="center" VALIGN="top">
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="class-use/AxionCommand.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
  </TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>

<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
&nbsp;PREV CLASS&nbsp;
&nbsp;<A HREF="../../org/axiondb/Constraint.html"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
  <A HREF="../../index.html" TARGET="_top"><B>FRAMES</B></A>  &nbsp;
&nbsp;<A HREF="AxionCommand.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
  SUMMARY: &nbsp;INNER&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: &nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<!-- =========== END OF NAVBAR =========== -->

<HR>
Copyright &copy; 2002-2003 Axion Development Team. All Rights Reserved.
</BODY>
</HTML>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -