Posts by Matheus Minguini • 173 points
15 posts
-
0
votes1
answer146
viewsQ: Mysql trigger - Syntax error
Would anyone know where I’m going wrong Trigger down below? CREATE TRIGGER atualiza_produto AFTER INSERT ON item_venda FOR EACH ROW BEGIN UPDATE produto SET vendido = 's' WHERE id = NEW.id_produto;…
mysqlasked Matheus Minguini 173 -
0
votes0
answers109
viewsQ: Mysql module running wrong script - Node Js
I am developing a simple system of customer persistence, products and sale. I have made a API using the express and module Mysql, but something strange is happening and I really have no idea what it…
-
2
votes1
answer852
viewsQ: Angular JS routes
good night! I’m new to single page application technology, and I’m finding it difficult to render my pages at Angular one, I have a button that when I click, fires a route, it tries to be loaded,…
-
1
votes2
answers1001
viewsQ: Data in ng-Model with input date shows error in Angularjs
Good evening, I’m trying to accomplish the CRUD in my application, using AngularJS and WEBService, when I will change a certain driver’s data, I send the JSON from the same to the SessionStorage, on…
angularjsasked Matheus Minguini 173 -
1
votes1
answer710
viewsQ: ng-repeat angular
I am developing an application with a GRID and I needed to format the dates coming to this GRID using data filter angular. However I am not being able to print the date array inside the tag…
-
0
votes1
answer304
viewsQ: Receive data from a select in Angular
I’m doing a select for a REST service, using Angular. But the page that should have the table populated with the data coming from select, is empty. On my page, I have an input (To enter the driver’s…
angularjsasked Matheus Minguini 173 -
1
votes1
answer4757
viewsQ: Checkbox in Angular
Good evening, guys, I’m a beginner in the development of apps using Angular, and currently, I came across the following situation: I need to register a certain driver, the same has categories on…
angularjsasked Matheus Minguini 173 -
1
votes1
answer409
viewsQ: Angular, Java Service REST
I am trying to make persistence (insert data) using Angularjs and Webservice REST in Java, when I click Insert in the console, the following error appears: POST…
-
0
votes1
answer245
viewsQ: Java RESTFULL using Jersey
Guys, I’m trying to develop a project in Java with a Web Service REST, I’m new in this Web Service business, so I’m kind of lost. I cannot access my service through the browser URL, when I enter the…
-
1
votes1
answer945
viewsQ: How to get an element id that has just been inserted - JAVA
How do I catch one id of an element that has just been inserted into Database in Java? Something like: mysql_insert_id() in the PHP.
-
0
votes1
answer4842
viewsQ: Convert from String to Json in Java EE
I am receiving a String in a . jsp and would like to convert it to JSON, thus accessing the values of the same. I’ve searched everything, but I couldn’t solve my problem, because I can’t access the…
-
6
votes1
answer221
viewsQ: Doubt about inserting Javascript object
Context I am trying to make the persistence in the database of a purchase as well as all of its items. For this I am using a file .jsp. But I need to send the data from a web page. The purchase data…
-
2
votes2
answers159
viewsQ: Inversion of array (positions)
I’m trying to do an array inversion in the language C. For example: I have an array [1, 2, 3], I need to invert the numbers in the SAME array, giving an output like this: [3,2,1]. I’m trying, but…
-
0
votes2
answers165
viewsQ: Java Script, PHP - Sends ID of a php loop to a Javascript function
Guys, I have a delete button that has a href directed to the php delete file. I would like to display a confirmation message before sending the registration to the exclusion page. I used the…
-
0
votes1
answer161
viewsQ: Mysql Trigger - Error syntax: DECLARE @sale INT' at line 3
I am doing a TRIGGER in Mysql so that at the time of an insertion in the table "Itens_venda" the field "sold" in the product table is changed to "yes". As a sale can have several items, I decided to…
mysqlasked Matheus Minguini 173