Posts by Weslley Fillipe • 161 points
21 posts
-
0
votes1
answer107
viewsQ: How do I upload a web application (html and css) to a local server?
In order to use Livestyle (a tool that updates real-time css in the browser), I need to upload my web application (html + css) to a local server, but how can I do this? I’ve always used Tomcat for…
-
0
votes0
answers52
viewsQ: SQL ERROR 1442. What can it be?
The error appears when I try to insert something in bank 3, because Trigger will be activated and will insert in bank2, but I am not performing 2 shares in the same table as the error tells...…
-
1
votes1
answer129
viewsQ: How to use new in SQL?
My goal is: so insert an element into banco1.Clientes the same is inserted in banco2.Clientes via a Trigger. If this element is already in the bank, there should be an update. But I cannot use the…
-
1
votes1
answer34
viewsQ: Integration between Mysql banks giving error 1442?
Hello! I have the following problem to solve: bank 1 cannot interact directly with bank 3, so I need an interface that interacts between them, which I called bank 2. Seat 1 inserts into seat 2; seat…
-
0
votes0
answers322
viewsQ: MYSQL ERROR 1442, how to resolve?
After inserting in "banco1.customers" I want to insert the same content in "banco2.Customers", but error appears. I saw that Mysql does not allow two operations in the same table, but they are…
-
1
votes0
answers29
viewsQ: How to insert data into another database table only if it does not exist?
I would like it if, by inserting it in the Customers table in the bank 1, it were inserted in the Customers table in the bank 2, but only if there is no more. Currently my code is like this:…
mysqlasked Weslley Fillipe 161 -
0
votes2
answers149
viewsQ: how to create a "Store list"?
Each time the user clicked on the button, I would like you to save the information to a localStorage different and tried to do with for, and increment 1 every time you click the button, like this:…
-
0
votes0
answers48
viewsQ: How to send an APPEND between HTML pages
Hello! What I would like is that when my user click on "add cart" on page 1, an append is added on page 2. Currently I have the append configured correctly on my page 2 HTML PAGE 1: <button…
javascriptasked Weslley Fillipe 161 -
-1
votes1
answer60
viewsQ: How to send a div via Javascript?
Good evening! I have the following problem: when the user clicks on "Add Cart" the item should appear in payments (as shown in picture 1). How would I send all this div by javascript? Or what is the…
javascriptasked Weslley Fillipe 161 -
0
votes0
answers53
viewsQ: Is it possible to use a Javascript-enabled slider?
would like to share variables between functions in javascript, it is possible? function 1: $('#btnCompra').click (function(){ localStorage.tituloProd = 'arroz'; tituloProd =…
javascriptasked Weslley Fillipe 161 -
-2
votes1
answer250
viewsQ: localStorage.getItem does not work
Good evening, could you help me? I’m trying to pass the data from one page to another but the field is empty. page 1: where I take the data. page 2: where I want to insert that data. PAGE 1: <h1…
localstorageasked Weslley Fillipe 161 -
-1
votes1
answer566
viewsQ: How to save elements in localStorage and send to another page?
I would like to save some fields from my main page and send to my "cart" page. Ex: I would like to save the title of a product to display on another page without using a database. What I have so…
localstorageasked Weslley Fillipe 161 -
1
votes1
answer61
viewsQ: Adding variables in javascript
Hello! I have the following code: $(document).ready(function(){ $('.buttonAdd').click (function(){ $(this).closest('.row').find('.inputQtd').val(); var iqtd =…
javascriptasked Weslley Fillipe 161 -
0
votes1
answer67
viewsQ: How to capture the unique element in HTML?
My doubt is a little confusing, but I hope to be as clear as possible. As shown in the image ( https://i.stack.Imgur.com/Lafjw.png ) I have a cart and the div of each element (product) has the same…
htmlasked Weslley Fillipe 161 -
2
votes2
answers1446
viewsQ: JSON PARSE returning 'Object Object'
I would like to know what is wrong with my job, because in allocating obj = data, the same sage object object, the date value is a JSON returned by the WEBSERVICE. Date value: [{"descricao":"Lorem…
-
3
votes1
answer530
viewsQ: How to save data to database through ajax?
I am trying to send a javascript form to my webservice through ajax. The idea is that: javascript send the complete form, and in the webservice, it will be saved in the database through the persist…
ajaxasked Weslley Fillipe 161 -
0
votes1
answer99
viewsQ: how to connect javascript to webservice?
After days and days of research, I come to cry out to all of you to save my semester. What I want is very simple: connect my javascript front-end with my java web service REST. Just as a test, I…
javascriptasked Weslley Fillipe 161 -
0
votes3
answers1858
viewsQ: HTML does not recognize jQuery (imported or internal)
I’ve researched several topics and I haven’t found the problem. Simply put, the functions I use in jQuery, such as tooltip and Mask, do not work on my page, and by giving F12 in the Chrome browser,…
jqueryasked Weslley Fillipe 161 -
1
votes1
answer215
viewsQ: Is it possible to return the values of a Resultset?
Next, I would like to: if the book is already "borrowed" in the bank, to show to those who borrowed it, and if not, allow the loan. With this, if this loan already existed, I would like to return…
javaasked Weslley Fillipe 161 -
1
votes1
answer286
viewsQ: JAVA - Database connection - Sqlexception error: Parameter index out of range
Hello! I’m new to Java, and I came across this problem: Netbeans accuses that I am not respecting the SQL parameter limits, but are correct. Part of the error in question: Testando conexão com banco…
-
-1
votes1
answer41
viewsQ: How to return an sql answer?
This is my first forum post, so I apologize if I make a mistake. The thing is, I need to register a book in the bank, but before that, I need to know if the author is already registered in the bank,…