Author: SSWUG Research

Community

MySQL Cursors and Loops

(Rob Gravelle) A loop is a programming construct that executes a block of code repeatedly based on a condition. Cursors, on the other hand, are utilized to process each row returned by a SELECT statement. In today’s article, we’ll be learning about various loop types supported by MySQL as well as g

Community

Simple Unit Tests With AngularJS

(K. Scott Allen) One of the benefits of using AngularJS is the ability to unit test the JavaScript code in a complex application. Unit testing is incredibly easy for trivial cases when controllers and models are declared in global scope. However unit testing is slightly more challenging for objects