This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let | |
//serialize table [dummy] into a JSON object | |
json = Text.FromBinary(Json.FromValue(dummy)), | |
//pass JSON object to SP that unwrapps it as a recordset & performs INSERT operation | |
out = Value.NativeQuery(Sql.Database(".", "QueryPower"),"usp_InsertDemoJSON @json",[json=json]) | |
in | |
out |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment