Posts by Eduardo Macieski Severo • 49 points
7 posts
-
-4
votes1
answer51
viewsA: Cart quantity
The ideal is each time the client adds you put this item in an array in the session, so when the client changes pages the data will remain.
c#answered Eduardo Macieski Severo 49 -
0
votes2
answers321
viewsA: How to give a select and bring the top 1 of each group?
My suggestion is you order the data implementing in select. SELECT *FROM tb_processos ORDER BY data_inicio DESC; The rest is ideal to handle directly in the code.…
-
0
votes2
answers115
viewsA: Creating and Consuming a REST API
Hello, my suggestion is that you create a Full Rest Api, apply some security rules like encrypting the sent data by storing the keys in the app and the REST server, about security if the restfull…
-
1
votes1
answer43
viewsA: Input disable not found in serialize
The disable property really isn’t read in serialize, try changing the field property to readonly. $('#inputId').prop('readonly', true); That should solve your problem.…
-
0
votes2
answers70
viewsA: Help with an associative table of friends
Good afternoon! In case you can cross the two tables. I believe you have two tables tb_usuario, tb_usuario_request (example only). Do The Following. SELECT * FROM tb_usuario AS usuario JOIN…
-
1
votes1
answer26
viewsA: Error "zero is not a supported Scheme"
In the code I did above, at the time I put the data of superuser + connection url I did not notice at http position:// Wrong: zero:central@http://localhost:5984 the correct would be :…
-
-1
votes1
answer26
viewsQ: Error "zero is not a supported Scheme"
I’m trying to use Couchdb together with Python, I did the installation of both correctly, I went to Couchdbe created a user, when I go to the Python compiler and run: import couchdb couch =…