Posts by ABCDEFGH • 21 points
6 posts
-
0
votes0
answers32
viewsQ: Access private attributes via a php loop
I am making a class for my database interaction and need to assemble my DML commands based on a past class instance. foreach($obj as $key => $value){ //monta comando DML } This only works if the…
-
0
votes0
answers54
viewsQ: PHP does not receive POST requests
I have the following code in my index.php: <?php header('Content-type: application/json'); var_dump($_SERVER); And I’ll file a POST request for him. I just don’t understand why…
-
0
votes2
answers1270
views -
1
votes1
answer319
viewsQ: Error compiling function in oracle
When trying to compile the following Function: CREATE OR REPLACE FUNCTION f_id_fornecedor(Nomefornecedor in varchar(50)) RETURN integer IS codigoforncedor integer; BEGIN SELECT codfornecedor INTO…
-
1
votes3
answers16842
viewsQ: What is Batch and Online Processing?
Batch I researched and saw that this is a batch processing.... Ta, but what does it mean ? and what would a batch file ? (refers only to the .bat ?) and what would batch drives ? What’s the…
-
0
votes0
answers45
viewsQ: Fetch columns from two tables that are not directly related
I have 5 tables: cliente, produto, compra, compra_produto and fornecedor. And the following relationships: compra (fk_cliente) compra_produto (fk_compra) compra_produto (fk_produto) produto…