I'm not calling the BasePeer. I'm calling the generated class. The stack trace says the NullPointerException is happening in the lower level class (BasePeer) in createQueryString.
This code worked in Torque 2.0, by the way, and was not modified for 3.0. > > 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]> > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
