Jump to content
  • 0

Inserarea datei si timpului in baza de date


Question

Posted (edited)

Salut. Ma puteti ajuta cu inserarea datei si timpului in baza de date? Folosesc easy mysql.

Edited by Matei02Mihai

2 answers to this question

Recommended Posts

  • 0
Posted (edited)

NOW()

or

format(string, sizeofstring, "INSERT INTO table SET unbandate = FROM_UNIXTIME(%d)",gettime+/*days*/);
//....
new timestamp = gettime();
format(query_string, sizeof query_string, 
    "\
        SELECT DATE_FORMAT(unbandate, '%%d.%%m.%%Y %%H:%%i') AS unban_date, \
        DATEDIFF(unbandate, FROM_UNIXTIME(%d)) AS unban_days FROM table \
        WHERE name = '%e' AND UNIX_TIMESTAMP(unbandate) > FROM_UNIXTIME(%d)\
    ",
    timestamp, /*Nick_Name*/, timestamp
);
Edited by Pa4enka
  • Like 1

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.