Dmitry Bubnenkov
Dmitry Bubnenkov
@isoos Do you mean I need to add some callback (that currently not in code)?
@isoos Thanks, but how to detect it was error in transaction? ``` PostgreSQLSeverity.error : Query failed prior to execution. This query's transaction encountered an error earlier in the transaction that...
And try-catch inside it? Like: ``` await connection.transaction( (ctx) async { for (var s in body['sql'].split(';')) { // print(s + ";"); try { await ctx.query(s + ";"); } // catch...
Big thanks! Could you look at next code and say if I understand all that you said right: ``` Future sqlInsert(Map body) async { try { print("Trying to inserting data");...
@9il could you look at https://habrahabr.ru/post/311568/ and if you have account answer for comments, or write answer here and I will add them to article.
@ljubobratovicrelja very cool! Big thanks! I will try it when finish other work. Could you add this code to example? I think a lot of people have similar task. Later...
I tried: ``` Vue.component('network', new vueVisNetwork.Network); ``` But got error: ``` Uncaught TypeError: Cannot read property 'hasChildNodes' of undefined ```
Sorry i am away from PC. Could you look my vue template in my github. I use it as base. And if I right remember did not update it. I...
Do you sure that I can use it with Parcel? After import I am getting error: ``` > [email protected] postinstall D:\code\2018\zakupki-downloader\site\html\node_modules\vis-data > opencollective postinstall || exit 0 ‼ Could not...
To break all project enough to add one line: ``` import { Network } from "vue-vis-network"; ``` 