This repository has been archived on 2025-10-02. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
helseveileder/backend/db/insert_data.go

47 lines
1 KiB
Go
Raw Normal View History

package db
import (
"database/sql"
"fmt"
"log"
_ "github.com/lib/pq"
)
func InsertData(age string, education string, healthcarepersonell bool, gender string) {
// Connection string
psqlInfo := fmt.Sprintf("host=%s port=%d user=%s "+
"password=%s dbname=%s sslmode=disable",
host, port, user, password, dbname)
// Connect to the database
db, err := sql.Open("postgres", psqlInfo)
if err != nil {
log.Fatalf("Error opening database: %v\n", err)
}
defer db.Close()
// Check the connection
err = db.Ping()
if err != nil {
log.Fatalf("Error connecting to the database: %v\n", err)
}
insertStatement := `
INSERT INTO Respondent (alder, utdanningsgrad, helsepersonell, kjønn)
VALUES ($1, $2, $3, $4)
`
stmt, err := db.Prepare(insertStatement)
if err != nil {
log.Fatalf("Error preparing statement: %v\n", err)
}
defer stmt.Close()
_, err = stmt.Exec(age, education, healthcarepersonell, gender)
if err != nil {
log.Fatalf("Error executing statement: %v\n", err)
}
fmt.Println("Data inserted successfully")
}