Posts by Henrique Gusmão • 123 points
10 posts
-
1
votes2
answers162
viewsA: I cannot enter data in Sqlite Table
The error was syntax and it was very difficult to find an extra comma in the code. To find I had to use a function to catch the error and print. I advise everyone to use when working with…
-
1
votes2
answers162
viewsQ: I cannot enter data in Sqlite Table
I want to insert some data into my Sqlite table. Table creation in . app $cordovaSQLite.execute(db, "CREATE TABLE IF NOT EXISTS tbprodutos( id INTEGER PRIMARY KEY, codbarras NUM, desccupom TEXT,…
-
1
votes2
answers132
viewsA: Restsharp connected with Firebase but shows no result
< REPLY > To get what’s in the database Firebase in format JSON I just modified my method: public static void restAPI() { var client = new RestClient("https://teste.firebaseio.com/.json"); var…
-
0
votes2
answers132
viewsQ: Restsharp connected with Firebase but shows no result
I did a job in C# and now I need to connect this service with my bank on Firebase. The following is the method in Library for connection with the Firebase: public static void restAPI() { var client…
-
0
votes0
answers371
viewsQ: Export Data to Firebase
I would like to export data to my BD Firebase. I have a service set up in Visual Studio in C# which creates a list with name and price. I need to export this data to Firebase or export a txt file if…
-
1
votes0
answers345
viewsQ: Sqlite: Unable to open database
Application using Ionic/Cordova (Sqlite). I’m using the $cordovaSQLite plugin inside the app. When I save, modify something in the project, the simulation in brownser (Googlechrome) is extremely…
-
1
votes4
answers536
viewsA: How to share the $Scope variable from one controller to another with parameters in Angularjs
I’m a beginner too but I’ll try to help you by giving you two tips: There is a $localStorage which stores information and when loaded can be passed from controllers to controllers, much used for…
-
3
votes1
answer332
viewsQ: Beginner with firebase
I want to implement firebase in my app (Ionic). When I test a message: Unknown Provider: $firebaseArrayProvider <- $firebaseArray <- Loginctrl Should I declare my firebase settings in the…
-
0
votes0
answers30
viewsQ: GULPFILE permission error
He was asking me to update my CLI. I updated my line; I tried to update my Ionic lib and gave error and now I can’t access my application.…
-
4
votes1
answer790
viewsQ: How to add results from a list and display result in an Ionic popup?
I have an actiosheet that opens a popup: In the popup I want the total values of the list to be displayed. That is, I need to add / accumulate the values of the list and display the sum in the…