`key:"value" key2:"value2"`
type T struct {
X int "name"
}
type T struct {
X int `json:"name"` // or `xml:"name"`
}
Recommend
Go Canceling in-progress operations Canceling database operations after a timeout
Go Executing SQL statements that don't return data
Go Executing transactions Example
Go Querying for data Handling multiple result sets
Go Querying for data Handling nullable column values
Go Querying for data Querying for multiple rows
Go Querying for data Querying for a single row
Go Avoiding SQL injection risk
Go Using prepared statements How you use prepared statements
Go Opening a database handle Freeing resources
Go Opening a database handle Storing database credentials
Go Opening a database handle Confirming a connection
Go Opening a database handle Opening a database handle Opening with a Connector
Go Opening a database handle Opening a database handle Opening with a connection string
Go Opening a database handle Locating and importing a database driver
Go Call your code from another module
Go Compile and install the application
Go Return greetings for multiple people
Tutorial: Get started with Go Call code in an external package
Tutorial: Get started with Go Write some code
Go Tutorial: Getting started with fuzzing Completed code
Go Tutorial: Getting started with fuzzing Fix the double reverse error Fix the error Run the code
Go Tutorial: Getting started with fuzzing Fix the double reverse error Fix the error Write the code
Go Tutorial: Getting started with fuzzing Fix the invalid string error Fix the error Run the code
Go Tutorial: Getting started with fuzzing Fix the invalid string error Fix the error Write the code
Go Tutorial: Getting started with fuzzing Fix the invalid string error Diagnose the error
Go Tutorial: Getting started with fuzzing Add a fuzz test Run the code
Go Tutorial: Getting started with fuzzing Add a fuzz test Write the code
Go Tutorial: Getting started with fuzzing Add a unit test Run the code
Go Tutorial: Getting started with fuzzing Add a unit test Write the code
Go Tutorial: Getting started with fuzzing Add code to test Run the code
Go Tutorial: Getting started with fuzzing Add code to test Write the code
Go Tutorial: Getting started with fuzzing Create a folder for your code
Tutorial: Create a Go module Start a module that others can use