Posts by Guilherme • 38 points
5 posts
-
0
votes2
answers53
viewsQ: Select floor() in oracle
In Mysql would be the equivalent of SELECT floor(4.5); How to do the same in Oracle PL SQL?
-
0
votes2
answers53
viewsA: Select floor() in oracle
As follows: SELECT floor(4.5) FROM dual;
-
0
votes2
answers108
viewsA: How to Give Get in Response Status
Try the following: success: function(data, textStatus, request) { console.log(request.status); }, complete: function(request, textStatus) { console.log(request.status); }…
-
2
votes2
answers657
viewsA: Redirect page by passing header Authorization
The server will send the Authorization header in your reply, that is, after executing the request, you can get the header as follows within the "Success: success: function(data, textStatus,…
-
0
votes3
answers303
viewsA: How do I make the Alert() method in JS appear only 1 time when the user logs into the application?
Rewrite the method, storing errors in an array, to display them all once. success: function(data){ const message = []; var obj = eval(data); obj.forEach(function(e){ message.push(e.message_message);…