Guest User

Untitled

a guest
Nov 24th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. Connection.select({
  2. From: 'Product',
  3. Where: {
  4. Id: 5
  5. },
  6. OnSuccess: function(results) {
  7. alert(results.length + 'record found');
  8. },
  9. OnError: function(err) {
  10. console.log(err);
  11. alert(err.Message);
  12. }
  13. });
Add Comment
Please, Sign In to add comment