val email = FormVar.wrapFail FormVar.getStringErr ("email","email") val sql = `select name, note from employee where email = ^(Db.qqq email)` val _ = (case Db.zeroOrOneRow sql of SOME [name, note] => Page.return "Employee Search Success" `
Try a new search?` | _ => Page.return "Employee Search Failure" `Use the back-button in your Web browser to go back and enter another email address` ) handle Fail m => Page.return "Fail raised" (Quot.fromString m)