We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
static mapRowAsObject(fieldList, row) { return fieldList .map(f => { return encodeValue(false, row[f] != null ? row[f] : '', 'TabSeparated'); }) .join('\t'); }
if value = null why dont insert that null value to db
The text was updated successfully, but these errors were encountered:
Maybe try inserting it as a 'NULL' string? Here's a simplified approach on how I did it in my app:
const dto = ( psid: string, // .... ): Array<string | number> => { return [ psid, .... ] // call it like dto(params.psid) // or dto('NULL') }
then you can save it like:
const query = `INSERT INTO table (*) VALUES ${_join(data, ',')}` try { await clickhouse.query(query).toPromise() } catch (e) { console.error(`[CRON WORKER] Error whilst saving log data: ${e}`) }
Sorry, something went wrong.
and eventually it should store the data as null:
null
No branches or pull requests
if value = null why dont insert that null value to db
The text was updated successfully, but these errors were encountered: