From 0a735a6f1241beffec3427f19f89624a6d557514 Mon Sep 17 00:00:00 2001 From: Andreas Rumpf Date: Thu, 12 Feb 2015 10:02:53 +0100 Subject: [PATCH] Merge pull request #2108 from oderwat/patch-1 Fixing dylib name for OSX --- 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 968a2923ad..dab84c2d50 100644 --- a/src/db_mysql.nim +++ b/src/db_mysql.nim @@ -16,11 +16,11 @@ type TDbConn* = PMySQL ## encapsulates a database connection TRow* = seq[string] ## a row of a dataset. NULL database values will be ## transformed always to the empty string. - EDb* = object of EIO ## exception that is raised if a database error occurs + EDb* = object of IOError ## exception that is raised if a database error occurs TSqlQuery* = distinct string ## an SQL query string - FDb* = object of FIO ## effect that denotes a database operation + FDb* = object of IOEffect ## effect that denotes a database operation FReadDb* = object of FDb ## effect that denotes a read operation FWriteDb* = object of FDb ## effect that denotes a write operation