1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

examples: run vfmt over psql/customer.v

This commit is contained in:
Delyan Angelov 2021-06-07 18:25:20 +03:00
parent 01a8d3f8a1
commit ac0b638b6a

View File

@ -5,14 +5,15 @@ import pg
const dash = '----------------------------------------------------------------'
struct Customer {
id int
name string
id int
name string
nr_orders int
country string
country string
}
fn main() {
/*db := pg.connect(pg.Config{
/*
db := pg.connect(pg.Config{
host: 'localhost' //'127.0.0.1'
user: 'postgres'
dbname: 'customerdb'
@ -60,5 +61,3 @@ fn main() {
}
db.insert(nc)*/
}