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
{{ message }}
This repository was archived by the owner on May 24, 2018. It is now read-only.
var select = new Devwik.SQL.Select('empsPerCity', 'select count(*) empNumber, offices.* from employees, offices where offices.officeCode = employees.officecode group by officeCode');
//Devwik.SQL.Tests.transactions();
};
Devwik.SQL.Tests = {};
Devwik.SQL.Tests.transactions = function() {
var transaction = new Devwik.SQL.Transaction();
if(transaction) {
console.log(Devwik.SQL.execStatement('select count(*) from employees',
transaction)[0]);
//employeeNumber is a unique key at least one of these should fail