From 81d17a63e320a35c9f07b7ddaa41b60039a859eb Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Sun, 21 Jun 2020 16:12:16 +0200 Subject: [PATCH] doc: add a link to ORM examples --- doc/docs.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/docs.md b/doc/docs.md index ef32808ae9..3ad48dc8d2 100644 --- a/doc/docs.md +++ b/doc/docs.md @@ -1452,7 +1452,7 @@ fn read_log() { (this is still in an alpha state) -V has a built-in ORM (object-relational mapping) which supports Postgres, and will soon support MySQL and SQLite. +V has a built-in ORM (object-relational mapping) which supports SQLite, and will soon support MySQL, Postgres, MS SQL, and Oracle. V's ORM provides a number of benefits: @@ -1493,6 +1493,8 @@ new_customer := Customer{name: 'Bob', nr_orders: 10} sql db { insert new_customer into Customer } ``` +For more examples, see vlib/orm/orm_test.v. + ## vfmt You don't need to worry about formatting your code or setting style guidelines.