Posts by Victorprvt • 165 points
8 posts
-
1
votes0
answers48
viewsQ: I’m having trouble inserting data into a table with php
My form is like this: <form name="pedidooo" action="cadastrandoPedido.php" method="post" > <?php include './conex.php'; $query = ("SELECT * FROM conta"); $result =…
-
1
votes2
answers85
viewsQ: Bootstrap is a CSS?
My teacher said that in his work all the aesthetics of the site should be done in CSS, a question: I can do in Bootstrap?
-
2
votes2
answers933
viewsQ: If I directly copy the Visual Studio project folder gives any error? Or do I have to do something else?
I wanted to copy the Project Solution to my teacher, I can go to the file location and just copy the project and send it to him that it will work?
-
2
votes1
answer89
viewsQ: In a MVC 4 C# Web Application model, in which layer can the ADO.NET Entity Data Model file be located?
What layer do I put him in? Model control or view? ADO.NET Entity Data Model what makes the connection to the database.
-
0
votes1
answer154
viewsQ: How to leave values in report with iReport(or TIBCO) only with 2 decimal places
I wanted to make sure my real values were only 2 decimal places in my report, but I don’t know where to declare it. On my application I declared all floa type…
-
3
votes1
answer1083
viewsQ: How to add the numbers of a column in the bank that has the same id and repeats?
I have a table called venda_itens that has venda_id, item_id and item_quantidade. I wanted to bring back the item name with the total amount of items sold, and to amount of total items, through a…
-
2
votes0
answers88
viewsQ: How to calculate interest and discount on a line?
On my button I declared so: numero_de_parcelas = Integer.parseInt(txtNumeroParcelas.getText()); juros = Float.parseFloat(txtJuros.getText()); desconto = Float.parseFloat(txtDesconto.getText());…
javaasked Victorprvt 165 -
2
votes1
answer411
viewsQ: How to do a query in sql that returns data from a table when the data is empty?
Well, I created a table called installments, that when the customer pays it is inserted 'PAID' in the column situation, and when not paid it remains blank. I wanted to fetch the information from…