pub fn build_insert_sql(
entity: &str,
data: &Value,
) -> Result<(String, Vec<String>), StorageError>Expand description
Build an INSERT SQL statement and collect string parameter values.
Returns (sql, values) where values[0] is the generated ID.