All Questions

1
answer

Is it possible to use timestamp without having to convert to String in Oracle?

I have a query that one of your filters is a date, is it possible to filter in Oracle with something like this? SELECT * FROM tabela WHERE campoData = '2014-02-10 15:56:00.000' Or do we always have to convert to String as below? SELECT *...
asked on 10.02.2014 / 18:57
2
answers

I can not put a subquery inside the IN in PIVOT

Below is the code for creating the table and inserting some data for testing. CREATE TABLE [dbo].[tb_empresas]( [data] [date] NULL, [nome] [varchar](100) NULL, [valor] [decimal](18, 2) NULL ) ON [PRIMARY] INSERT INTO tb_empresas (data, nome,...
asked on 10.03.2014 / 15:29
2
answers

How to add the fadeIn effect in this image transition code

I wanted to know how I can add the .fadeIn(500) effect on that system that changes background every 10 seconds. <script> inicial_background = 0; function mudar_background(){ img = new Array(); img[0]...
asked on 07.04.2014 / 05:42
3
answers

How to fix the position of an element inside a div with scroll (com css)

Is it possible to fix an element (div, img, p) in a div with scroll and with position:relative and using css only? * Currently I reposition the div using the $('elemento').scroll() function and calculating the scroolTo...
asked on 16.05.2014 / 22:35
2
answers

Compare date time with a timespan

In asp mvc 4, I'm doing a query where I'll get the data where hours are less than or equal to those entered by the user. That is, I have a dateTime and I check with the variable entered by the user (a TimeSpan ) if it is lowe...
asked on 18.03.2014 / 16:11
1
answer

PHP Use Magical Methods or not?

There is a doubt that I find interesting and would like to post here. How do you usually use methods whose functionality is to set and retrieve attributes in a class ? They use this way: public function setNome($nome) Or with ma...
asked on 18.06.2014 / 18:00
1
answer

strongsReport in Delphi

Would anyone have a mini application for me to learn about the operation of the strongs Report? I've already done a report with the strong report, but what I'm hooking on, is that I have to put a Bane SubDetails so I try to reference 2...
asked on 27.05.2014 / 16:28
3
answers

Navigation without refresh! [duplicate]

I'm developing a site that has div where I have a script that lists results of a SQL query. They are images, in this case. The site was developed in only one page, so when I click on portfolio, it only takes me to div #portifolio...
asked on 05.02.2014 / 21:25
1
answer

jQuery validate - rule skip_or_fill_minimum does not fire if used more than once

I have a form that is composed of four inputs and they are grouped in pairs. The rule for this form is very simple, if I fill one of the inputs of the pair, I have to fill in the other one too or do not fill in any. To achieve this beh...
asked on 06.02.2014 / 23:07
2
answers

PHP / MySQL site integration with App Phonegap

I'm creating a website and an App with Phonegap, I'm new to programming for mobile platforms. This site has a database and I want this database to be available directly in the App, but I do not want access to removal in the database. How c...
asked on 08.04.2014 / 01:30