()
| 188 | } |
| 189 | |
| 190 | public long count() throws DbException { |
| 191 | if (!table.tableIsExists()) return 0; |
| 192 | |
| 193 | DbModelSelector dmSelector = this.select("count(\"" + table.getId().getName() + "\") as count"); |
| 194 | DbModel firstModel = dmSelector.findFirst(); |
| 195 | if (firstModel != null) { |
| 196 | return firstModel.getLong("count", 0); |
| 197 | } |
| 198 | return 0; |
| 199 | } |
| 200 | |
| 201 | @Override |
| 202 | public String toString() { |