All Questions

2
answers

Is it possible to transfer MySQL data directly to a table in Excel?

Is there any way to transfer all the information from the database to a table in Excel? It can be in any language.     
asked on 17.09.2015 / 04:09
1
answer

ProgressDialog in C #

I'm trying to create a form similar to ProgressDialog in android, in C # .. The idea would be for this to happen: //criar o controle na thread principal frmWaitingProgress fl = new frmWaitingProgress(this); fl.Show(this); //fazer todo o p...
asked on 08.12.2016 / 13:04
1
answer

How to know which version of jquery was loaded

The code below perfectly shows me whether jQuery was uploaded: if (jQuery) { $('div#home_login').attr('style', 'background: green'); } else { $('div#home_login').attr('style', 'background: red'); } But how do I know which ver...
asked on 29.03.2016 / 16:14
1
answer

What are the rules for building an HTML email?

I am about to build an HTML email, but I see that there are differences to an ordinary website page. I want the HTML email to have css and to appear both in desktop access and on tablet and mobile, and it should show some images in the body of t...
asked on 29.03.2016 / 17:42
1
answer

My CSS file is too large and it is difficult to keep readability

My CSS file is close to 10,000 lines. It is getting very complicated to maintain this file. in its version of Development the file "weighs" 170kb and in its minified version, "only" 128kb Some points to consider: Avoid unnecessary network...
asked on 11.02.2016 / 17:09
1
answer

Prepared statements with MySQLi waits data entry validation?

I was studying here about security in PHP & MySQL, and I had a question: If I'm using prepared statments , is it still necessary to validate data entry? For example, I have a field in the form: <input type='text' name='campo'>...
asked on 24.09.2015 / 09:11
1
answer

How to map an image attribute by Fluent API?

I would like to know how to map an attribute of type image of SqlServer to the Fluent API. In my database I have the following table: CREATE TABLE [dbo].[ProdutoFotoERP]( [ProdutoFotoID] [int] NOT NULL, [Produt...
asked on 11.10.2016 / 18:54
1
answer

What are the advantages and disadvantages of using BaaS

Yesterday I witnessed a lecture where I was presenting some things about BaaS(Backend as a Service) . After this some doubts arose: Following this model the need to create a back-end for complete is eliminated leading the projec...
asked on 16.09.2016 / 16:07
1
answer

What is the purpose of the while (* variable) and if (! * variable) in the "while" and "if" statements?

In the Code Review there is a implementation of a simply linked list
asked on 08.11.2016 / 00:02
1
answer

Structure / Organization Project C #

I have a project that I'm developing in layers, so far I have the following: Access to data, presentation, business and transfer objects. The question is: Example: I have form to register a legal entity in the database. To save the dat...
asked on 26.10.2016 / 15:16