Posts by GgMamedio • 93 points
11 posts
-
1
votes2
answers1224
viewsA: Taking data from an Laravel PHP Object
I managed to solve, just turned my object into an array with the function toArray() as follows $array = $users->toArray(); so listed as follows: array(15) { [0]=> Object(stdClass)#213 (3) {…
-
2
votes2
answers1224
viewsQ: Taking data from an Laravel PHP Object
I am listing from the data of a query I made with the following code: $users = DB::table('users') ->join('transportes', 'users.id', '=', 'transportes.user_id') ->join('empresas',…
-
0
votes1
answer55
viewsA: Reading BD Sqlite Android Studio (Kotlin)
All I had to do was declare Tipo after equal and receive a valueOf of the string type, being as follows: t.tipo = Tipo.valueOf(result.getString(result.getColumnIndex(COL_TIPO)).toString())…
-
0
votes1
answer55
viewsQ: Reading BD Sqlite Android Studio (Kotlin)
Next guys, I’m having a problem reading a data from the database, with the following method: But I have this little problem on line 68. Where are you saying you expect a value like Tipo() and I’m…
-
0
votes1
answer123
viewsA: Error Adding Controller with views using Entity Framework in Asp.NET
Good by what it all looks like! After hours researching, this was nothing more than the lack of an "s" in the tag <connectionString> who would stay <connectionStrings> Lack of attention…
-
0
votes1
answer123
viewsQ: Error Adding Controller with views using Entity Framework in Asp.NET
When trying to add the following error appears: Model: using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace MVCEntity.Models { public class Usuario { public…
-
1
votes1
answer47
viewsA: Help with protection
<?php $str = "sssrrrry"; $v = array("a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "y", "z"); for($i = 0; $i < 25; $i++){…
-
2
votes1
answer58
viewsQ: Gravity with "Physics" Corona SKD library (ERROR)
I am solving a college exercise in Orona SDK in the realization of a small game, but I have a small problem in the hour when the ball will fall from "top" for the second time. The point is that I…
-
0
votes1
answer39
viewsQ: Read XML and create Objects using LINQ in VB.NET
With the following code below: <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <escuelas> <escuela> <estudiante>noe</estudiante>…
-
0
votes1
answer53
viewsQ: Using "select" in sql (oracle), failed to search
I have to settle the following question: 1.Consult EL NOMBRE (DESCRIPCION) DE LOS PRODUCTOS ADQUIRIDOS POR LOS CLIENTES HOOPS Y GOOD SPORT EN EL ANNO 1990. the command used for the search was:…
-
2
votes1
answer54
viewsQ: I have a question regarding the installation and configuration of Composer (Phpunit)
I’m doing a project at the Federal Institute of Triângulo Mineiro, on a student control system made in php, so I’m starting a testing phase using Phpunit and I have my doubts because I’m not…