[go-nuts] Re: import csv file

2016-08-19 Thread francis badasu
loud and clear -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optou

[go-nuts] Re: import csv file

2016-08-19 Thread francis badasu
Yh, thanks so much. but still getting this error when i run it. undefined: sql in sql.Open > > -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsu

[go-nuts] Re: import csv file

2016-08-19 Thread francis badasu
This is a snippets of the first part of my code package main import ( "encoding/csv" "fmt" "os" ) func main() { file, err := os.Open("Account_balances.csv") if err != nil { fmt.Println("Error", err) return } defer file.Close() reader := csv.NewReader(file) record, err := reader.Rea

[go-nuts] import csv file

2016-08-18 Thread francis badasu
Hi guys, How do i import a csv file and save it in sql or sqlite thanks in advance -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@g