| 102 | } |
| 103 | |
| 104 | Napi::Value GetRawRowJS(Napi::Env env, Statement* stmt, sqlite3_stmt* handle, bool safe_ints) { |
| 105 | return stmt->GetRowBuilder().GetRawRowJS(env, handle, safe_ints); |
| 106 | } |
| 107 | |
| 108 | Napi::Value GetRowJS(Napi::Env env, Statement* stmt, sqlite3_stmt* handle, bool safe_ints, char mode) { |
| 109 | if (mode == Data::FLAT) return GetFlatRowJS(env, stmt, handle, safe_ints); |