Questions tagged [updatedate]
15 questions
4
votes
2 answers
NHibernate: Insert and update dates
Using NHibernate, what is the best way to handle InsertDate (a.k.a CreateDate) and UpdateDate columns?
For example:
public class Customer
{
public virtual string Name { get; set; }
public virtual DateTime InsertDate { get; set; }
…

cbp
- 25,252
- 29
- 125
- 205
3
votes
3 answers
PHP filemtime vs MySQL last updated timestamp for image caching in CMS
I'm trying to determine if it's better to store an image's last modified date in a MySQL database or use the PHP function filemtime.
In my case, all of the website info is stored in a database (cms), so there is always a query to pull the image…

drooh
- 578
- 4
- 18
- 46
3
votes
2 answers
Rails: Showing the latest deploy date in web app
I'd like to show in our app when the latest production deploy was made, as a means of showing an ongoing commitment to improvement, etc, etc.
Off the top of my head I'm thinking of getting a last_updated_at from one of the files, but I'd like to…

Joshua Pinter
- 45,245
- 23
- 243
- 245
2
votes
1 answer
How do I optimize the search for changed object and its dependencies records
I am searching for active record objects that have changed since a given date. My code below works but I would like to make these calls more effectively. Any ideas?
# product_controller.rb file
@products = products.select {|product|…

dfosah
- 23
- 3
2
votes
2 answers
Last Run/Modified Procedure Timestamp/Date in Postgresql
I have a schema with a table along with a procedure.
I want to find the last run or the modifications done in that procedure from that schema.schema is abc, so for abc schema the procedure proc1 should show the last run or any modifications done on…

user1538020
- 515
- 1
- 9
- 25
2
votes
1 answer
create / update timestamps - when to add/use?
I am wondering what kind of table should the columns create_time and update_time be added to?
If I have video table , video_detail table,tag table and tag_video_relation table.
I know tables (such as tag``tag_video_relation) do not need create_time…

Mithril
- 12,947
- 18
- 102
- 153
1
vote
0 answers
How can I find the latest date when I edited my code in Visual Studio?
I want to know my latest date when I edited my code in Visual Studio (Java).
Something like this:

Surapat Pongsuwan
- 57
- 1
- 7
1
vote
0 answers
update data store as historical for every single day separately with postgresql python
I've seen many kinds of answer for especially postgresql such like:
Store value history in PostgreSQL
Setting up Cygnus-PostgreSQL for historical data…

Prosenjit
- 241
- 5
- 15
1
vote
0 answers
How to update minDate and maxDate of Datepicker Android
I have an activity containing 2 DatePickers (From and To) and a Button called "Special request".
The first thing i do in my activity is set the minDate and maxDate of both DatePickers. Then by clicking on the Button i wish to update those minDate…

clems36
- 922
- 1
- 13
- 26
0
votes
1 answer
Django problem updating date field when updating a record
I have a problem when I try to update a field named date_updated. My intention with the field is that every time a record is updated, the date_updated field of that record should be updated by the date the change is made. That field and one other…

Alonso
- 1
0
votes
0 answers
Track the created on and updated on data of features in geoserver layers
In arcgis there is a capability of tracking the created and updated date of features in the layers.
Is it possible to handle the same thing from geoserver layers by any settings and / or plugins.

Naveen Kumar H S
- 1,304
- 16
- 30
0
votes
1 answer
how to update the date in android DatePicker widget
Hey,
I want to update the date to a year before 1970.
the updateDate function wants a date since 1970.
the widget itself allow you to select 1900-2100 (from what i read you can change it also using an xml to describe the control)
any solutions?
if…
0
votes
0 answers
How to update Android Datepicker maxdate
I have two datepickers in one activity. One datepicker has a MinDate set from the current day. The other one has a MinDate from the current day and MaxDate from the first choosen datepicker. It's working fine but when i change the first datepicker…

Joris
- 119
- 9
0
votes
2 answers
Updating Systemdate for Modified date field asp.net
I am using Visual Studio 2012 with vb.net. I am trying to add modified date field into table when the user makes changes to the form in the EditItemTemplate. When I click on the "Edit" button I do see today's date in the field; however when I click…

Nita
- 195
- 3
- 8
- 20
0
votes
1 answer
PHP: Update MySQL entry based on certain date
I have an entry in my database, and when a certain date hits I want to update the entry.
Here's an example:
+----+----------+-------------+---------+
| id | title | exiryDate | status |
+----+----------+-------------+---------+
| 23 | my title…

Allen S
- 3,471
- 4
- 34
- 46