You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var cb = new CriteriaBuilder.Builder({
store: mystore
});
// select 10 rows, starting at 5
var sql = 'select a.address addy, orderId, orderNumber num limit 10, 5';
// run
cb.query({sql:sql});