Overthinking finds me in an impossible situation. But that’s life for the most part. Whatever happens in life will happen. We really don’t have a say in much of it. I suppose that’s life in a nutshell now isn’t it? It would be better if I understood all there was to comprehend from life. If only there was a way to accomplish all of that. The mind can be a badly diseased factory at times. Talk about a nightmare. Let’s talk about today for a moment. I’m depressed today. The problem isn’t being depressed. The problem is I don’t know how I got here. When I get depressed, I become suicidal. Now that isn’t something to be proud of. But I can’t seem to escape it. Have you d# Mon Jul 20 11:25:12 AM MDT 2026 Overthinking finds me in an impossible situation. But that’s life for the most part. Whatever happens in life will happen. We really don’t have a say in much of it. I suppose that’s life in a nutshell now isn’t it? It would be better if I understood all there was to comprehend from life. ...
Been attempting to put a datetime variable into a MySQL Database via ColdFusion. For the life of me, I couldn't figure out what I was doing wrong.
At first I tried:
#createODBCDateTime(now())#
For some reason that was only giving me the date and not the time.
Then I tried splitting up the date and time into two different fields, one for the date and the other for the time. Then I tried this code:
#createODBCDate(now())#
#createODBCTime(now())#
That gave me the date, but still not the time. Well I did some searching and then found there's a built in function in MySQL to do this. Why not.
Talk about simple:
NOW()
Well guess what, it worked just like a charm.
Comments
Post a Comment