Skip to content

Commit

Permalink
fix linebreaks
Browse files Browse the repository at this point in the history
  • Loading branch information
BedrockSquirrel committed Jun 23, 2024
1 parent fec23c4 commit 98a4c0e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tools/edbconnect/main/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ func runQuery(db *sql.DB, query string) {
for _, colName := range cols {
fmt.Printf("%s\t", colName)
}
fmt.Println()

// Prepare a slice to hold the values
values := make([]interface{}, len(cols))
Expand Down Expand Up @@ -134,6 +135,7 @@ func runQuery(db *sql.DB, query string) {
fmt.Printf("%v\t", v)
}
}
fmt.Println()
}

if err = rows.Err(); err != nil {
Expand Down

0 comments on commit 98a4c0e

Please sign in to comment.