From 5e801014fa160df1feaf8bf3ecefa042ffd31981 Mon Sep 17 00:00:00 2001 From: Araq Date: Mon, 19 Nov 2012 00:16:25 +0100 Subject: [PATCH] fixes #250 --- src/db_mysql.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/db_mysql.nim b/src/db_mysql.nim index 118ed39bb9..5c71fc90d9 100755 --- a/src/db_mysql.nim +++ b/src/db_mysql.nim @@ -20,8 +20,8 @@ type TSqlQuery* = distinct string ## an SQL query string FDb* = object of FIO ## effect that denotes a database operation - FReadDb* = object of FReadIO ## effect that denotes a read operation - FWriteDb* = object of FWriteIO ## effect that denotes a write operation + FReadDb* = object of FDb ## effect that denotes a read operation + FWriteDb* = object of FDb ## effect that denotes a write operation proc dbError(db: TDbConn) {.noreturn.} = ## raises an EDb exception.