aboutsummaryrefslogtreecommitdiff
path: root/GradeBook.tcl
diff options
context:
space:
mode:
Diffstat (limited to 'GradeBook.tcl')
-rwxr-xr-xGradeBook.tcl18
1 files changed, 0 insertions, 18 deletions
diff --git a/GradeBook.tcl b/GradeBook.tcl
index cb7ddf4..9c785f6 100755
--- a/GradeBook.tcl
+++ b/GradeBook.tcl
@@ -87,28 +87,10 @@ if { [file exists $dbfile] && ("$coursedbfname" ne "") } {
puts "<body>"
sqlite3 db $dbfile
- # we will do everything with in one transaction
- # otherwise I see performance degradation on some computers
- # when there are a lot if update statements
- set eval_str [concat BEGIN TRANSACTION]
- set err [catch {db eval $eval_str } errStat]
- if { $err } {
- htmlErrorMsg $errStat
- dbg "the following error happen: $errStat" msg_level_critical
- }
-
set permission_list [ AccessGroupRights db $user ]
htmlTop $permission_list
ChoseAction $action $permission_list $user
- # ending transaction right before closing database
- set eval_str [concat END TRANSACTION]
- set err [catch {db eval $eval_str } errStat]
- if { $err } {
- htmlErrorMsg $errStat
- dbg "the following error happen: $errStat" msg_level_critical
- }
-
db close
} else {
htmlHeaderDBSelector