Posts by Mailson Teles Borges • 45 points
2 posts
-
1
votes1
answer43
viewsQ: Id booked in key breach transaction
I have the following question: In an operation of INSERT in a table when a key violation occurs and a ROOLBACK of the transaction, the ID still reserved? Below illustrative examples: Script of the…
-
2
votes1
answer92
viewsQ: List private properties
I have the following class: class Orcamento{ private $valor; private $itens; public function __construct($valor){ $this->valor = $valor; $this->itens = []; } public function __get($property){…