All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.imaginary.sql.msql.RowTokenizer

com.imaginary.sql.msql.RowTokenizer

public class RowTokenizer
implements ParsedRow
Represents a row parsed straight from mSQL. It takes in a row of raw data from a connection to mSQL and parses it into a list of columns values.
Last modified $Date: 1999/07/09 23:16:42 $

Version:
$Revision: 1.1.2.1 $
Author:
George Reese (borg@imaginary.com)

Constructor Index

 o RowTokenizer(byte[])
 o RowTokenizer(byte[], int)

Method Index

 o columns()
 o get(int)
 o hasColumn(int)
 o set(int, String)
 o size()
 o toString()

Constructors

 o RowTokenizer
 public RowTokenizer(byte data[])
 o RowTokenizer
 public RowTokenizer(byte data[],
                     int sz)

Methods

 o columns
 public Iterator columns() throws MsqlException
 o get
 public String get(int i) throws MsqlException
 o hasColumn
 public boolean hasColumn(int col) throws MsqlException
 o set
 public void set(int i,
                 String val)
 o size
 public int size() throws MsqlException
 o toString
 public String toString()

All Packages  Class Hierarchy  This Package  Previous  Next  Index