convertSmartSql

open fun convertSmartSql(db: SQLiteDatabase, smartSql: String): String

Convert "smart" sql query to actual sql A "smart" sql query is a query where columns are of the form {soupName:path} and tables are of the form {soupName} NB: only select's are allowed only indexed path can be referenced (alternatively you can do {soupName:_soupEntryId} or {soupName:_soupLastModifiedDate} to get an entire soup element back, do {soupName:_soup}

Return

actual sql

Parameters

db
smartSql