Java Doc for StaticCursor.java in  » Database-DBMS » Quadcap-Embeddable-Database » com » quadcap » sql » 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 DBMS » Quadcap Embeddable Database » com.quadcap.sql 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.quadcap.sql.TupleImpl
      com.quadcap.sql.CursorImpl
         com.quadcap.sql.StaticCursor

All known Subclasses:   com.quadcap.sql.meta.MetaCursor,
StaticCursor
public class StaticCursor extends CursorImpl implements Externalizable(Code)
Cursor implementation of VALUES clause. Contains either a row or a Vector of rows.
author:
   Stan Bailes


Field Summary
 RowcurrentRow
    
 intpos
    
 Tupletuple
    
 Vectorv
    

Constructor Summary
public  StaticCursor(Session session, Tuple tuple, Row row)
    
public  StaticCursor(Session session, Vector v)
     Constructor for a static cursor from a vector of rows.

Method Summary
public  booleanabsolute(int row)
     Position the cursor to the specified absolute row.
public  voidaddRow(Row row)
     Add a row to the cursor's row set.
public  voidafterLast()
     Position the cursor after the last row.
public  voidbeforeFirst()
     Position the cursor before the first row.
public  voidclose()
     Close.
public  voiddeleteRow()
     Static cursors aren't updateable.
public  Valueget(String columnName)
    
public  ColumngetColumn(int col)
     Return the specified column. Static cursors may or may not have tuple information.
public  ColumngetColumn(String columnName)
     Return the specified column. Static cursors may or may not have tuple information.
public  intgetColumnCount()
     Return the column count.
public  ComparatorgetComparator()
    
public  RowgetRow()
    
public  int[]getSortColumns()
    
public  booleanisWritable(int column)
    
public  booleannext()
     Move the cursor to the next row and return true if the cursor is positioned on a valid row.
public  booleanprev()
     Move the cursor to the previous row and return true if the cursor is positioned on a valid row.
public  voidput(String columnName, Value v)
    
public  voidreadExternal(ObjectInput in)
    
public  voidreset()
    
public  longsize()
     Return the number of rows in this cursor.
public  voidsort()
    
public  voidupdateRow(Row row)
     Static cursors aren't updateable.
public  voidupdateRow(int pos, Row row)
    
public  voidwriteExternal(ObjectOutput out)
    

Field Detail
currentRow
Row currentRow(Code)



pos
int pos(Code)



tuple
Tuple tuple(Code)



v
Vector v(Code)




Constructor Detail
StaticCursor
public StaticCursor(Session session, Tuple tuple, Row row)(Code)
Constructor for a static cursor from a tuple and single row



StaticCursor
public StaticCursor(Session session, Vector v)(Code)
Constructor for a static cursor from a vector of rows.




Method Detail
absolute
public boolean absolute(int row) throws SQLException(Code)
Position the cursor to the specified absolute row. The first row is row '1', and the last row is '-1', as in JDBC.



addRow
public void addRow(Row row)(Code)
Add a row to the cursor's row set.



afterLast
public void afterLast() throws SQLException(Code)
Position the cursor after the last row.



beforeFirst
public void beforeFirst() throws SQLException(Code)
Position the cursor before the first row.



close
public void close()(Code)
Close.



deleteRow
public void deleteRow() throws SQLException(Code)
Static cursors aren't updateable.



get
public Value get(String columnName) throws SQLException(Code)
Get the value for the specified column



getColumn
public Column getColumn(int col) throws SQLException(Code)
Return the specified column. Static cursors may or may not have tuple information. If they do, use the tuple information directly, otherwise default to the superclass (TupleImpl) implementation of getColumn.



getColumn
public Column getColumn(String columnName) throws SQLException(Code)
Return the specified column. Static cursors may or may not have tuple information. If they do, use the tuple information directly, otherwise default to the superclass (TupleImpl) implementation of getColumn.



getColumnCount
public int getColumnCount() throws SQLException(Code)
Return the column count.



getComparator
public Comparator getComparator()(Code)



getRow
public Row getRow()(Code)
Return the current row



getSortColumns
public int[] getSortColumns()(Code)



isWritable
public boolean isWritable(int column)(Code)
Static cursors don't allow column update



next
public boolean next()(Code)
Move the cursor to the next row and return true if the cursor is positioned on a valid row.



prev
public boolean prev()(Code)
Move the cursor to the previous row and return true if the cursor is positioned on a valid row.



put
public void put(String columnName, Value v) throws SQLException(Code)
Put a new value into the current row for the specified column (Who calls this? We're not supposed to be writable!!!)



readExternal
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException(Code)
Read me from a stream



reset
public void reset()(Code)



size
public long size() throws SQLException(Code)
Return the number of rows in this cursor.



sort
public void sort() throws ValueException, SQLException(Code)



updateRow
public void updateRow(Row row) throws SQLException(Code)
Static cursors aren't updateable.



updateRow
public void updateRow(int pos, Row row)(Code)



writeExternal
public void writeExternal(ObjectOutput out) throws IOException(Code)
Write me to a stream



Fields inherited from com.quadcap.sql.CursorImpl
protected Cursor outer(Code)(Java Doc)
protected Session session(Code)(Java Doc)

Methods inherited from com.quadcap.sql.CursorImpl
public boolean absolute(int row) throws SQLException(Code)(Java Doc)
abstract public void afterLast() throws SQLException(Code)(Java Doc)
abstract public void beforeFirst() throws SQLException(Code)(Java Doc)
abstract public void close() throws SQLException(Code)(Java Doc)
abstract public void deleteRow() throws SQLException(Code)(Java Doc)
static void dumpCursor(String label, Cursor c) throws SQLException(Code)(Java Doc)
public void finalize() throws Throwable(Code)(Java Doc)
public Column getColumn(String columnName) throws SQLException(Code)(Java Doc)
public Cursor getOuterCursor()(Code)(Java Doc)
abstract public Row getRow() throws SQLException(Code)(Java Doc)
public long getRowId()(Code)(Java Doc)
public Session getSession()(Code)(Java Doc)
public Table getTable()(Code)(Java Doc)
public void insertRow(Row row) throws SQLException(Code)(Java Doc)
abstract public boolean isWritable(int column) throws SQLException(Code)(Java Doc)
abstract public boolean next() throws SQLException(Code)(Java Doc)
public boolean prev() throws SQLException(Code)(Java Doc)
public void reset(Expression expr, Cursor outer) throws SQLException(Code)(Java Doc)
public void setOuterCursor(Cursor c)(Code)(Java Doc)
public String toString()(Code)(Java Doc)
abstract public void updateRow(Row row) throws SQLException(Code)(Java Doc)

Fields inherited from com.quadcap.sql.TupleImpl
protected Vector columns(Code)(Java Doc)
protected HashMap names(Code)(Java Doc)
protected String qual(Code)(Java Doc)
protected String qualifier(Code)(Java Doc)

Methods inherited from com.quadcap.sql.TupleImpl
public void addColumn(Column col) throws SQLException(Code)(Java Doc)
public void addColumn(Column col, int pos) throws SQLException(Code)(Java Doc)
public void addColumn(String name, Type type) throws SQLException(Code)(Java Doc)
public void addColumns(Session session, Tuple t) throws SQLException(Code)(Java Doc)
public void addColumns(Session session, Tuple t, boolean resolve) throws SQLException(Code)(Java Doc)
public void deleteColumn(int col) throws SQLException, IOException(Code)(Java Doc)
public Column getColumn(int i) throws SQLException(Code)(Java Doc)
public Column getColumn(String name) throws SQLException(Code)(Java Doc)
public int getColumnCount() throws SQLException(Code)(Java Doc)
public int getColumnIndex(String name) throws SQLException(Code)(Java Doc)
public String getName()(Code)(Java Doc)
public int[] mapColumns(Vector names) throws SQLException(Code)(Java Doc)
static int nextUnquotedPeriod(String s)(Code)(Java Doc)
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException(Code)(Java Doc)
public void resolveColumns() throws SQLException(Code)(Java Doc)
public void setName(String name)(Code)(Java Doc)
public String toString()(Code)(Java Doc)
public void writeExternal(ObjectOutput out) throws IOException(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.