Posts by Wallace Ferreira • 181 points
8 posts
-
0
votes2
answers94
viewsQ: Multidimensional Json for Object in C#
I’m learning c# and I’m having a hard time passing a multidimensional json to Object by doing an deserialize. I don’t really know how to fix it. See my json string json2 = @"[ { firstName: ""joao"",…
-
3
votes1
answer733
viewsQ: What will be the difference between Zend Framework 3 and Zend Expressive?
Hello Everyone I am with this doubt, in zend framework 2 although its components can be downloaded separately normally I used a ready-made Skeleton available on zend’s own site. In zend framework 3…
zendasked Wallace Ferreira 181 -
0
votes2
answers556
viewsA: Group Postgresql query results
I did it this way using a case and a count, as in the example that Motta passed. Look: select count(case m.statusmat.descricao when 'Completo' then m.statusmat.descricao) as Completo…
-
3
votes2
answers556
viewsQ: Group Postgresql query results
I have the regular table with the query. status |curso |matricula| --------- |------|---------| Completo |Inglês|001 | Cursando |Mat |002 | Reprovado |Esp |003 | Completo |Inglês|004 | Cursando |Esp…
-
0
votes4
answers180
viewsQ: Remove array positions that have the common name
I want to take certain positions out of mine array which have the name of common positions, and play for another array. EX: array 'id' => '147' 'nome' =>'João' 'email' => '[email protected]'…
-
0
votes2
answers278
viewsQ: Jquery is only appearing value of an input with . serialize()
I started studying Javascript and Jquery. I was doing a test to display on the screen what was sent via Form, but it is sending value only from a field, someone would be able to help me?! Here’s the…
jqueryasked Wallace Ferreira 181 -
7
votes2
answers5639
viewsQ: Rescuing the last insertion in the bank with lastInsertId PDO
I’m trying to rescue the last id in the bank with lastInsertId() of the PDO, but nothing appears. OBS: I’m using the Postgre. <?php try { $dbh = new…
-
2
votes1
answer151
viewsQ: Problems creating DAO and an insert
I’m starting now with C# and I’m having some problems at the time of developing this code, I was aiming to create a DAO with a simple connection and then instance it and then insert it into the…