Closed free1139 closed 11 years ago
// commits currently opened transaction func (t tx) Commit() error { if t.cx != nil && t.cx.IsConnected() { return t.cx.NewCursor().Execute("COMMIT", nil, nil) } return nil }
I've implemented the (somehow left out) Commit method. Can you try out https://github.com/tgulacsi/goracle/commit/7cb34c4c6618992f2a110e8579a581f98753a486 (ccc branch) ?
Thanks, GThomas
// commits currently opened transaction func (t tx) Commit() error { if t.cx != nil && t.cx.IsConnected() { return t.cx.NewCursor().Execute("COMMIT", nil, nil) } return nil }