Format Git Logs

I have to build a list box for one customer app showing the version history of their app. The easiest way is obviously to first upload the git log into a database, but the standard log looks like this: Command: Output: Beautiful, but not what I needed. I wanted a CSV format for easy upload to my database and obviously, the date should be in SQL format. The following code will help you with this. Just run it in the root folder of your GIT-enabled project in a terminal window on your macOS. ...

May 3, 2021 · 1 min

Reserved Keywords Databases

Almost all of us are probably dealing with databases every day. What I am seeing all the time is that people are using keywords for their field names, for instance, “date.” Depending on the database brand you are using there are different kinds of reserved (or not reserved) keywords the database is using itself. Reserved once can technically not be used as a field name, the non-reserved once can be used (but are likely to cause challenges in more complex queries). ...

February 5, 2021 · 2 min