March 2026
Intermediate
588 pages
14h 46m
English
Most real-world programs do not just crunch numbers in memory; they need to handle information that comes from outside sources. That might be a JSON file with configuration values, a CSV export from another system, or an entire database full of records that your application needs to query and update. Working with structured data and databases is where your Go programs start to feel real as you are dealing with the same formats and systems that production software uses every day. In this chapter, we will explore how Go makes it easy to read and write structured data in JSON and how to interact with databases using the database/sql package. You will see how to parse data into Go types, transform it, ...
Read now
Unlock full access