#1891 - Deprecate createSqlQuery() ... migrate to sqlQuery()

This commit is contained in:
rob bygrave
2019-12-13 13:58:14 +13:00
parent b3077d44f6
commit 502b20be67
16 changed files with 91 additions and 76 deletions
@@ -38,7 +38,7 @@ public class TestBinaryUUID extends BaseTestCase {
assertEquals(one1.getName(), fetch1.getName());
String sql = "select id, name from uuone";
List<SqlRow> list = DB.createSqlQuery(sql).findList();
List<SqlRow> list = DB.sqlQuery(sql).findList();
for (SqlRow sqlRow : list) {
Object sqlId = sqlRow.get("id");
assertNotNull(sqlId);