Uses of Class
vortex.dbCursor

Packages that use dbCursor
vortex   
vortex.sql   
 

Uses of dbCursor in vortex
 

Methods in vortex with parameters of type dbCursor
 void dbChannel.sql(dbCursor cursor, java.lang.String sqlStatement, int numDimensions, int numParameters)
          Associate a SQL statement to a dbCursor.
 void dbChannel.executePX(dbCursor cursorPX, int fetDbcur)
          Execute a non-SELECT position exec dbCursor.
 void dbChannel.execute(dbCursor cursor)
          Execute a non-SELECT dbCursor.
 void dbChannel.executeIO(dbCursor cursor)
          Execute a stored procedure dbCursor.
 void dbChannel.putBlob(dbCursor cursor, int blobColumn, dbBlob blob)
          Put (send) BLOB/CLOB data to the RDBMS.
 dbBlob dbChannel.getBlob(dbCursor cursor, int blobColumn, int maxNumBytes)
          Get (receive) BLOB/CLOB data from the RDBMS.
 void dbChannel.fetch(dbCursor cursor)
          Open and fetch from a SELECT dbCursor.
 void dbChannel.close(dbCursor cursor, boolean hard)
          Close a dbCursor.
 java.lang.String dbChannel.getString(dbCursor cursor)
          Get the next column as a string.
 dbNumber dbChannel.getNumber(dbCursor cursor)
          Get the next column as a dbNumber.
 byte[] dbChannel.getByte(dbCursor cursor)
          Get the next column as a byte array.
 java.util.Date dbChannel.getDate(dbCursor cursor)
          Get the next column as a Date.
 void dbChannel.getSkip(dbCursor cursor, int numColsToSkip, boolean stopOnColZero)
          Skip (pass over) columns.
 boolean dbChannel.Command(dbCursor cursor, int command, java.lang.String sql)
          Send VORTEXchannel command.
 void dbChannel.descparms(dbCursor cursor)
          Describe the bind parameters
 

Uses of dbCursor in vortex.sql
 

Fields in vortex.sql declared as dbCursor
protected  dbCursor vortexStatement.lcur
          dbCursor object
 

Methods in vortex.sql that return dbCursor
 dbCursor vortexRecord.getDbCursor()
          Return VORTEX dbCursor for this record
 

Constructors in vortex.sql with parameters of type dbCursor
vortexRecord(dbChannel db, dbCursor cur, int maxFieldSize)
          Constructor - Accepts Db Channel and Db Cursor as arguments