Getting started with Oracle Database running on Docker

In this post I will guide you through the steps necessary to run an Oracle Database on Docker. I will also guide through the steps to install the HR sample schema and access the database from outside the container. Install Docker Desktop If you have not done so already install Docker Desktop At the time […]

Go with Oracle Database – SQL Queries

This post will demonstrate how to connect to an Oracle database from Go using the Go DRiver for ORacle (godror) and execute SQL Queries. The code in this post is up on GitHub and was developed using Go 1.20.6 & VS Code running on Windows 10. I used a local version of the Oracle Database […]

Go: Excel to CSV

In this post I will demonstrate how to save all the worksheets within a Microsoft Excel file into individual CSV files using Excelize and the CSV functionality in the Standard Library. The code shown in this post can be found on GitHub and was developed using Go 1.20.5, Visual Studio Code with the Go Extension. […]