database routines are added to 04-databases/simple-crud

This commit is contained in:
programarivm 2019-09-27 11:00:35 +01:00
parent e22ca8d22e
commit 8605bb4bc6
3 changed files with 18 additions and 2 deletions

View File

@ -0,0 +1,6 @@
drop()
k ^comments;
k ^posts;
k ^users;
q 1

View File

@ -58,6 +58,14 @@
. w "User successfully fetched!",! . w "User successfully fetched!",!
. w "Username: ",data("username"),! . w "Username: ",data("username"),!
. w "Email: ",data("email"),! . w "Email: ",data("email"),!
. w "Full name: ",data("fullname"),! . w "Full name: ",data("fullname"),!,!
e d e d
. w "Whoops! The user could not be fetched.",! . w "Whoops! The user could not be fetched.",!,!
; drop database
s ok=$$drop^DatabaseRoutines()
i ok=1 d
. w "Database successfully dropped!",!
e d
. w "Whoops! The database could not be dropped.",!

View File

@ -221,6 +221,8 @@ Copy the examples into your `~/.fis-gtm/V6.3-003A_x86_64/r` folder and run:
Email: Email:
Full name: Full name:
Database successfully dropped!
> For further details also visit [UserRoutines.m](https://github.com/programarivm/mumps-examples/blob/master/04-databases/simple-crud/UserRoutines.m) > For further details also visit [UserRoutines.m](https://github.com/programarivm/mumps-examples/blob/master/04-databases/simple-crud/UserRoutines.m)
--- ---