All Questions

3
answers

Map java.time properties with Hibernate and / or JPA

Is there any way to map properties like java.time.LocalDate and / or java.time.Instant through JPA and / or Hibernate?     
asked on 05.07.2014 / 23:28
2
answers

Behavior of parameters in class constructor in C #

I'm having a question regarding the behavior of the parameters passed to the constructor of a class, are they by default ref / out or value? Searching about the behavior of parameters in common methods they are by default values, a...
asked on 30.09.2015 / 22:23
1
answer

Bootstrap Menu Problem

I made a customizing menu using Bootstrap, however, I'm having a problem when I decrease the width to
asked on 26.10.2015 / 16:05
1
answer

Pass route variable to controller method

I need to pass a variable from a route to a controller method. The route: Route::get('busca/{id}', 'MatriculasController@busca'); How can I pass the id variable to the method?     
asked on 03.11.2015 / 16:35
2
answers

How to pass an array of StdClass php objects to a JS variable using $ .ajax () jquery

I have the structure below. I need to access each value in jquery. Array ( [0] => stdClass Object ( [post_id] => 140 ) [1] => stdClass Object ( [post_id] => 141 )...
asked on 20.10.2015 / 21:06
2
answers

How to add option to a select by Jquery / Javascript

I'm trying to create a select that gets its options via JavaScript or jQuery, the data is stored in an array. Example: for (i = 0; i <= cidades.length; i++) { $('select').append('<option>' + cidades[i] + '</opt...
asked on 14.10.2015 / 00:42
1
answer

Error connecting to php 5.5 with SQL Server

I can not make a simple conn between sql server and php !! I have already downloaded and leave the ext folder the driver according to my version of php I already mentioned them in php.ini I rebooted And when I test the conn of this erro...
asked on 28.10.2015 / 17:20
1
answer

When to use each data type of mysqli_stmt_bind_param

According to documentação :    i - corresponding variable has type integer - d - corresponding variable has type string b - corresponding variable is a blob and will be sent in   packets So I wanted to know when exactly to...
asked on 25.09.2015 / 22:18
3
answers

Use of parameters in the "in" clause in a TIBQuery

I have the following SQL command in the SQL property of a TIBQuery component in Delphi. SQL command used in the parameterized component: select pro_codigo, pro_nome from produtos where pro_fis_codigo = :fis_codigo and pro_bloqueado...
asked on 11.06.2014 / 14:17
1
answer

Program to filter odd numbers in a list of numbers

I wrote a haskell script to find the odd numbers in a list and show them on the screen, but I get an error when it comes to displaying the results. impares[] =[] impares(x:xs) |(mod(x 2)==0) = impares xs |otherwise = x:(impare...
asked on 10.10.2015 / 22:48