aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/old/examples/database/psql/customer.v
blob: 4538a947285d0dbccf08cede8cc79a8d2e8258c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
module main

import pg

const dash = '----------------------------------------------------------------'

struct Customer {
	id        int
	name      string
	nr_orders int
	country   string
}

fn main() {
	/*
	db := pg.connect(pg.Config{
		host: 'localhost' //'127.0.0.1'
		user: 'postgres'
		dbname: 'customerdb'
	}) or {
		println('failed to connect')
		println(err)
		return
	}

	nr_customers := db.select count from Customer
	println('Total customers: $nr_customers')

	// V syntax can be used to build queries
	println(dash)
	bg_country := 'Bulgaria'
	bg_customers := db.select from Customer where country == bg_country  && id != 2
	for customer in bg_customers {
		println('$customer.country | $customer.id - $customer.name')
	}

	println(dash)
	ru_customers := db.select from Customer where country == 'Russia'
	for customer in ru_customers {
		println('$customer.country | $customer.id - $customer.name')
	}

	// by adding `limit 1` we tell V that there will be only one object
	println(dash)
	existing := db.select from Customer where id == 1 limit 1 or { panic(err) }
	println('Existing customer name: $existing.name')
	println('Existing customer full information:')
	println(existing)

	println(dash)
	q := Customer{}
	// It's easy to handle queries that don't return any data
	if anon := db.select from Customer where id == 12345 && name == q.name &&
			nr_orders > q.nr_orders limit 1 {
		println('Non existing customer name: $anon.name')
	}
	// Insert a new customer
	nc := Customer{
		name: 'John Doe'
		nr_orders: 10
	}
	db.insert(nc)*/
}