flipperlite

Results 8 comments of flipperlite
trafficstars

Here's what worked for me. After running `tns prepare ios` and `tns build ios --release`, it will create Xcode files in your_project/platforms/ios. Make sure you open the your_project.xcworkspace and NOT...

I'm pretty sure this repo is deprecated in favor of https://github.com/NativeScript/nativescript-ui-charts. I too tried to get this to run but it won't even migrate to NS version 8. I just...

According to [this post](https://stackoverflow.com/questions/10729276/how-can-i-get-the-full-object-in-node-jss-console-log-rather-than-object), you need to specify the printing depth. ```javascript console.dir(await promisePool.query("CALL some_procedure(1)"), { depth: null }); ```

Can you try this? I moved a few of the async/await to new locations. ```js // This DOES execute connection.query("SELECT * FROM ExampleTable;") .on("error", (err) => { throw err; })...

I'm able to catch the ENETUNREACH, ENOTFOUND, and ER_ACCESS_DENIED_ERROR errors using the [code shown here](https://github.com/sidorares/node-mysql2/issues/1511#issuecomment-1048397018). The API returns the expected JSON error without crashing or ending. I'm unable to get...

@sidorares You can do a multiline statement using transactions through a single `connection.execute` or `pool.query` call. You need to enable namedPlaceholders and multipleStatements in your connection config. On error, it...

I also had an NS 6.8.1 project recently worked on. It can work if you install it local to your project and not globally. Some of the fix was taken...

I have a fix for error "ViewHierarchy: Parent page is not part of the window hierarchy." with no previous modal open - just warp your showModal line with a setTimeout....