mumps-demo/06-databases/basic-sql-crud/Main.m

77 lines
1.5 KiB
Mathematica
Raw Normal View History

zlink "routines/Database"
zlink "routines/User"
; create users
2019-09-27 16:06:39 -04:00
s ok=$$set^User(1,"alice~password~alice-jones@no-reply.com~Alice Jones")
i ok=1 d
2019-09-29 06:25:27 -04:00
. w "User created:",!
. zwrite ^users(1)
e d
2019-09-27 06:30:58 -04:00
. w "Whoops! The user could not be created.",!
2019-09-27 16:06:39 -04:00
s ok=$$set^User(2,"bob~password~bob-smith@no-reply.com~Bob Smith")
i ok=1 d
2019-09-29 06:25:27 -04:00
. w !,"User created:",!
. zwrite ^users(2)
e d
2019-09-29 06:25:27 -04:00
. w !,"Whoops! The user could not be created.",!
; fetch a user
2019-09-29 06:25:27 -04:00
s id=1
s ok=$$fetch^User(id,.data)
i ok=1 d
2019-09-29 06:25:27 -04:00
. w !,"User fetched (",id,"):",!
. zwrite data
e d
2019-09-29 06:25:27 -04:00
. w !,"Whoops! The user could not be fetched.",!
; update a user
2019-09-29 06:25:27 -04:00
s id=1
s ok=$$set^User(id,"amelia~password~amelia-roberts@no-reply.com~Amelia Roberts")
i ok=1 d
2019-09-29 06:25:27 -04:00
. w !,"User updated (",id,"):",!
. zwrite ^users(1)
e d
2019-09-27 06:30:58 -04:00
. w !,"Whoops! The user could not be updated.",!
; fetch a user
2019-09-29 06:25:27 -04:00
s id=1
s ok=$$fetch^User(id,.data)
i ok=1 d
2019-09-29 06:25:27 -04:00
. w !,"User fetched (",id,"):",!
. zwrite data
e d
2019-09-29 06:25:27 -04:00
. w !,"Whoops! The user could not be fetched.",!
; delete a user
2019-09-29 06:25:27 -04:00
s id=2
s ok=$$remove^User(id)
i ok=1 d
2019-09-29 06:25:27 -04:00
. w !,"User deleted (",id,")",!
e d
2019-09-27 06:30:58 -04:00
. w !,"Whoops! The user could not be deleted.",!
; fetch a user
2019-09-29 06:25:27 -04:00
s id=2
s ok=$$fetch^User(id,.data)
i ok=1 d
2019-09-29 06:25:27 -04:00
. w !,"User fetched (",id,"):",!
. zwrite data
e d
2019-09-29 06:25:27 -04:00
. w !,"Whoops! The user could not be fetched.",!
; drop database
2019-09-27 16:06:39 -04:00
s ok=$$drop^Database()
i ok=1 d
2019-09-27 06:30:58 -04:00
. w !,"Database successfully dropped!",!
e d
2019-09-27 06:30:58 -04:00
. w !,"Whoops! The database could not be dropped.",!