/** * * This class is used to tokenize the text output of postgres. * */ package postgresql; import java.sql.*; import java.util.*; public class PGtokenizer { protected Vector tokens; public PGtokenizer(String string,char delim) { tokenize(string,delim); } /** * Tokenizes a new string */ public int tokenize(String string,char delim) { tokens = new Vector(); int nest=0,p,s; for(p=0,s=0;p");} public void removeAngle() {remove("<",">");} }