Escapes and quotes a non-empty String for use as an SQLite identifier.
String sqlIdentifier(String name) { checkState(name.isNotEmpty); return quoteWithDoubleQuotes(name); }