All Questions

1
answer

UPDATE from a SELECT using SQL Server

In SQL Server, it is possible to make a INSERT INTO to a table using a SELECT : INSERT INTO tabla (col, col2, col3) SELECT col, col2, col3 FROM otra_tabla WHERE sql = 'ok' Is this also possible for a UPDATE ? I have a...
asked on 09.02.2017 / 17:21
2
answers

Save images on sqlite android

Hello, I am trying an example to save photos in sqlite, I have managed to show an image of the gallery, but I do not know how to save it. Thanks. //cargar foto en imagenView @Override protected void onActivityResult(int requestCode, int result...
asked on 30.05.2017 / 13:22
2
answers

Update the database when I move rows of a table

View code: <div id="tabs"> <div class="col-md-12" id="current"> @include('cms.public.views.partials._messages') <div id="table1"> <table class="table">...
asked on 23.08.2017 / 14:49
3
answers

Compare content of two strings in c?

Hi, I'm new (new programming too) and this is my first question, I would like to know how to compare two chains. This is what I did but it turns out that it does not compare me but throws me the second message no more. char pal1[10],pal2[10];...
asked on 30.09.2017 / 01:47
1
answer

Problem with code snippet Visual Studio 2015

I have a code snippet that according to the syntax is all right, but I can not get the tab stop from the snippet to change to the variables that they are inside the parentheses, on the contrary I click tab , it does not do anything, I cli...
asked on 08.08.2017 / 02:37
1
answer

Group by by date using left join mysql

I am trying to make a query that involves 3 tables, post, comments and likes. I need to know the date of the post and the title of the post, the number of people who have commented on the post and the number of likes for each person, the detail...
asked on 28.02.2018 / 20:35
1
answer

real-time currency exchange from MXN to USD online store to show prices

I have an online store and the prices of each product are shown in dollars and one side will show an "approx" in Mexican pesos as what aliexpress does, or failing to know if to handle these currency changes depending of the language that is sele...
asked on 25.07.2016 / 08:21
1
answer

Android 6.0 does not show any errors Huawei logcat

yesterday I updated the version of my huawei p8 to android 6.0 and today I find that the error messages are not shown in the logcat, it only shows me this message when an error occurs: [ 06-06 09:02:00.624 2929: 2929 E/ ] process...
asked on 06.06.2016 / 10:10
3
answers

I need to upload an API Rest to a web server

I have a API Rest that I use locally and I need to upload it to a web server. The problem I have is that it will not be configured once it is uploaded to communicate with the server's SQL database. The error I get is this: XMLHttpReq...
asked on 07.06.2016 / 19:36
2
answers

Is there a "time" type that represents such that HH: mm in SQL?

I am a SQL beginner and I am creating a table, my doubt is that I have defined my start time and end time as VARCHAR2 to enter a time, which correspond to some classes (of a gym), that it would be more correct to create it with some type time...
asked on 11.08.2016 / 12:34