return q.first();
}
private Object handleDML(String s, Method method, Object[] args)
{
Update u = handle.createStatement(s);
if (args != null) bindArguments(method.isAnnotationPresent(BindBy.class) ?
method.getAnnotation(BindBy.class).value() :
BindType.Position, u, args);
Class rt = method.getReturnType();
int changed = u.execute();
if (method.getReturnType() == null)
{
return null;
}
else if (Integer.class.equals(rt) || int.class.equals(rt))