Anxiety is a bunch of hooey. I don’t know how else to say it. Having panic attacks that send you to the hospital are not good! I wish I had a clue of how to navigate through this life without anxiety. But I’m not sure I know how to do that, unfortunately. I’ve seen books that have to deal with anxiety and all of that, but the books I’ve seen? They tend to say “control it, we won’t tell you how to do that, but you need to control it!” So, maybe I’m not reading the right books on the subject? I don’t know. Then the panic attacks come my way, and I don’t know how to deal with those either. I just have to hang on for dear life, and hope for the best. I think that’s the best way to handle these situations right now. I guess. I hate that thought process though, it comes with a price; that’s for sure. Living with anxiety is like always contemplating what could happen or what might happen without just allowing life to take place and happen. I can’t allow life to just flow how it wants to a...
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