1
vote
4answers
31 views
How do I alter a mysql table column defaults?
I have a table with a column of type timestamp which defaults current_timestamp and updates to current_timestamp on every update.
I want to remove the "on update" feature on this …
3
votes
0answers
14 views
Converting a 64-bit long UTC timestamp into Actionscript Date
I'm using a Java 64-bit long representation of UTC time System.currentTimeInMillis() and sending that to an Actionscript client as a String, and I want to convert to an Actionscrip …
3
votes
2answers
44 views
How long the time funtion works in php
Is php date() and time() function works between the years 1901-2038. What function will I use for my long based projects. or I am wrong?
0
votes
3answers
63 views
Unix timestamp to .net DateTime
I must be doing an obvious mistake but I can't figure it out.
I am importing a date stored in a mysql database (it is stored by the ExpressionEngine CMS). It is a unix timestamp, …
1
vote
2answers
107 views
How do I account for missing data when creating an Excel file in MATLAB?
I had posted a similar question related to plotting data, and now I'd like to know how to handle missing data when outputting data to an Excel file using the XLSWRITE function.
I …
1
vote
2answers
22 views
how to get a UNIVERSAL windows batch file timestamp
Hello, I'm having trouble generating a timestamp in a windows batch file because I get diferent date formats on different windows versions.
My machine:
>echo %date%
>Tue 11 …
-1
votes
2answers
12 views
connection time zone issue with jOra eclipse plugin
I started using the jOra eclipse plugin. The plugin seems pretty robust and I'm hoping to stop using SQLDeveloper for 95% of my database needs.
Many of our tables have columns …
0
votes
3answers
81 views
Time stamp parsing from the beginning of a string in C#
Hi all,
I am working on re-writing an existing Java software solution in .NET. At one point, the Java solution reads a time stamp at the beginning of a string, simply like this:
…
0
votes
0answers
21 views
Entity Framework - MySQL Timestamp with StoreGeneratedPattern=”Computed”
I have a timestamp column in my MySQL database being managed by Entity Framework that is set to default to the current time on insert and update, this was failing originally so I m …
2
votes
3answers
148 views
Current time in microseconds in java
On a unix system, is there a way to get a timestamp with microsecond level accuracy in java? Something like C's gettimeofday function.
0
votes
3answers
113 views
Oracle cast(timestamp as date)
I see incosistency in Oracle.
The inconsistensy is between the way INSERT timestamp data_type value into DATE data_type column works compared to the way CAST(timestamp as DATE) wor …
0
votes
2answers
29 views
Prevent Ant to perform a task if a file is older than an other file
Hi all,
how can I prevent Ant to process a task if a source file is older than the current target.
For example, I created a javacc file MyParser.jj and there is no need for javacc …
0
votes
5answers
41 views
Mysql - selecting year from a unix timestamp
I am using this:
SELECT FROM_UNIXTIME(my_unix_timestamp_column, '%Y') AS year FROM table_name WHERE year = 2009;
but it gives me an error:
Unknown column 'year' in 'where claus …
1
vote
1answer
39 views
Wordpress the_time formatting
Pretty simple question here, hoping for a simple answer.
I want to display my wordpress time output as DD.MM.YY
So today it would be 10.11.09
I couldn't find anything in the wor …
1
vote
1answer
72 views
How do I plot vectors of different length on the same axes in MATLAB?
I am running into trouble trying to compare and plot two files of different length. In MATLAB I do not know how to plot two vectors of different length in the same x-axis. As one f …
