All Questions

1
answer

Python collation excel report with Pandas

I am generating a report with the Pandas module in Python, I get the data from MySQL, but there is a column with accented data, at the time of generating the report it falls, I leave information related to the problem. Connection code: con...
asked on 11.05.2018 / 12:21
1
answer

Consult with Like to search for characters that are not within A to Z

I find myself doing a search in my database. The search consists of finding rows with characters that do not belong to the alphabet (from the 'A' to the 'Z' ) for example 'Þ' , '%' or an Ampersand ' & '. In...
asked on 30.05.2018 / 22:35
2
answers

Can you use value in a string-array to assign a different identifier to each item of an Android spinner?

I happen to have a Spinner that has 4 names: <string-array name="Nombres"> <item>Seleccione</item> <item>Juan</item> <item>Pedro</item> <item>Carlos</...
asked on 10.06.2016 / 05:01
1
answer

How can I lower the opacity of a background image from 1 to 0 and return from 0 to 1 and so on?

// find elements var $window = $(window) var $layer = $('#banner-message') var $section = $('.section') $(window).on('scroll', function() { var $windowScroll = $window.scrollTop() var $scroll = $windowScroll / 1000...
asked on 11.05.2018 / 13:52
1
answer

How to pass the VALUE of an INPUT to another INPUT of a table created with JQuery?

You see, I have my code, in which of a search that I do, when selecting the result the fields (INPUTS) are filled automatically using the autocomplete. Now, clicking on add using JQuery I have created a table which creates all the INPUTS similar...
asked on 18.05.2018 / 21:43
1
answer

Convert an array of objects to JSON

You see, I have the following problem, I have a field of type hidden on a page asp.net that has as value a list of objects serialized with JSON from C# . The value of hidden is the following text: [{ "Eleme...
asked on 09.05.2018 / 15:35
2
answers

Add with SQL conditions

I am learning SQL and I have a database with two empty columns, Suma , Producto and I want to add the attributes of the selected names (I put a * so that they know which one I select) and I want to put a condition to my sum a...
asked on 08.07.2018 / 01:35
1
answer

Error adding the array with double data

The code below works as it should, in case anyone wants to use it, I thank all those who commented Giving linear algebra are teaching me operations with vectors and to simplify my life I wanted to make a code for this, I am not very profi...
asked on 31.05.2018 / 09:03
1
answer

Problem counting all records by specialty and adding record with total

I need to extract the total of all records by specialty and, in turn, add this number of records. This is my SQL query: SELECT t.empresa, Count(t.idespecialidad) AS todos, e.nombre AS nombre_especialidad FROM...
asked on 11.05.2018 / 13:10
2
answers

problem with a query prepared in php and mysqli

I would like to ask for your help with the code of a registration form which I am trying to change to use prepared queries: $registros2=mysqli_query($conexion,"SELECT id_cliente FROM clientes WHERE correo='$correo'"); $fila2=mysqli_fetch_array...
asked on 27.07.2018 / 00:34