Questions tagged as 'data'

1
answer

ORACLE date error

Although I have many materials on the subject, nothing has even helped me resolve it. I'm trying to make a simple query in an Oracle database and I get an error, follow the error. OCIStmtExecute: ORA-01843: not a valid month Follow my q...
asked by 19.01.2017 / 19:07
2
answers

I do not know how to call a certain list item that enters my "for" in other functions

I'm trying to make a program that picks up a list of members that contains the name, email, and renewal day (type of day pay monthly), and when it's the day, send an email to him. But I have trouble getting the name and email of that particul...
asked by 12.12.2016 / 05:02
2
answers

List all "date" attributes that contain a certain code

I need to list all data faults that contain certain code in their name ( not in value ). HTML tag example with attributes: <input type="hidden" id="products-end" data-flavor-id-15515-1="abc" data-flavor-pr-15515-1="abc" data-flavor-id-15...
asked by 16.11.2015 / 23:16
1
answer

System date storage

I need to capture the system date and store it in an integer variable, as I'll have to compare it with a date that the user will be informed. I found the _strdate function that stores the date in the DD / MM / AA format in a string, howev...
asked by 08.10.2015 / 02:37
1
answer

Performing a specific task on a specific date and time

I'm trying to develop a small system that sends an email every Tuesday at 08:00 in the morning. But I'm a bit confused, I can already send the email and check if it's Tuesday, but I do not know if it's correct. The system keeps running,...
asked by 08.09.2015 / 14:37
1
answer

Counting by date difference

I need to make a MySQL query that does the following: Count the number of times that the same record appears with a difference greater than 15 days, that is: Record 1 - Date: 01/20/2015 Record 2 - Date: 01/22/2015 Record 3 - Date: 03/...
asked by 14.04.2015 / 04:18
1
answer

Comparing dates of an array in PHP

I'm trying to compare the dates coming from an array of the database so I can organize them within a timeline. The problem is that I can not compare dates to know where to put each entry ... Maybe the problem is that within the array the date...
asked by 07.11.2014 / 23:03
1
answer

Validate Date entry by EditText

I have an EditText with Mask for entering a date. How can I validate whether the date exists or not? Code of my EditText NascimentoUsu = (EditText)findViewById(R.id.edtdata_usu); NascimentoUsu.addTextChangedListener(Mask.insert("##/##/####"...
asked by 03.09.2014 / 15:19
1
answer

Error when using DateFormat.Parse

I get the date and call the exchangeDataTraFormat private void makeJsonObjReq(){ showProgressDialog(); int id = ((AppController) this.getApplication()).getID(); JsonObjectRequest jsonObjReq = new JsonObjectRequest(Request.Method.G...
asked by 29.10.2014 / 18:30
1
answer

Conversion of dates in the database

How to convert a date that is in the format DDMMYYYY to YYYYMMDD ? I'm having trouble sending this data to different SQL databases, since each has been crafted and is already powered.     
asked by 03.09.2014 / 23:09