* If arguments are required in the string they will be preceeded by "?" then the argument number.
*/
public void setEJBQLString(String ejbqlString) {
//Added the check for when we are building the query from the deployment XML
if ((ejbqlString != null) && (!ejbqlString.equals(""))) {
EJBQLCallQueryMechanism mechanism = new EJBQLCallQueryMechanism(this, new EJBQLCall(ejbqlString));
setQueryMechanism(mechanism);
}
}