Questions tagged as 'set'

2
answers

Eloquent Laravel - Column user_id

Hello, I'm learning laravel and I do not find this in any forum. I have some tables that have a foreign key called 'user_id', but when I save an object in the database I always have to fill that column. Is there a way to do this? I want to be ab...
asked by 08.05.2018 / 03:36
1
answer

Problem with Getters and Setters of an Array

I'm having trouble accessing arrays in a singleton class Class Info public class Info { private static Info cinfo; private String[] first_name; private String[] last_name; private String[] nickname; public static Info getInstance() {...
asked by 19.07.2014 / 06:47
1
answer

How to suppress the Oracle input window without using set sets off

I need to insert an image into oracle using php, but after I convert it to insert into the database, it receives some characters & in the middle of the string, this character in Oracle triggers an input screen, when this input screen is fire...
asked by 06.03.2017 / 17:09
1
answer

Difference between tuple and set

I'm working with python and I was wondering what would be the difference between a set () () and a tuple (). I know that both are delimited with '()'. But I tried to assign a set attribute to a tuple, that is: THIS IS MY SET: (OR WHAT I TH...
asked by 19.11.2015 / 20:57
2
answers

PHP Cookie is not set on remote server

I implemented a cookie that works on the local server but does not work on the remote server, I do not understand why. Thanks for any help. I have the following code: <?php if (isset($_POST['name']) && !empty($_POST['n...
asked by 09.07.2014 / 15:29
1
answer

How to mount the operator == of a struct?

I have the following structs: struct Arco { int i, j; Arco () {}; Arco (const Arco& obj): i(obj.i), j(obj.j) {}; Arco(int _i, int _j) : i(_i), j(_j) {} }; struct ARCO_TEMPO { Arco a; int slotTimeU; int slotTimeV; A...
asked by 07.04.2018 / 23:12