> prescott balch: > when I use a varchar column it gives me nullPointerException building > the query string in BasePeer.
Is there a reason you are using the Generic BasePeer instead of the Peer generated for that table? Just for grins, does the problem still occur if you use the specific Peer? I.E., change: List results = BasePeer.doSelect(criteria); ...to... List results = CustomerPeer.doSelect(criteria); Chris -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
