-rw-r--r-- | libopie2/opiepim/backend/odatebookaccessbackend_sql.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libopie2/opiepim/backend/odatebookaccessbackend_sql.cpp b/libopie2/opiepim/backend/odatebookaccessbackend_sql.cpp index 495a8dd..6c32b40 100644 --- a/libopie2/opiepim/backend/odatebookaccessbackend_sql.cpp +++ b/libopie2/opiepim/backend/odatebookaccessbackend_sql.cpp | |||
@@ -226,6 +226,8 @@ OPimEvent ODateBookAccessBackend_SQL::find( int uid ) const{ | |||
226 | QString qu = "select *"; | 226 | QString qu = "select *"; |
227 | qu += "from datebook where uid = " + QString::number(uid); | 227 | qu += "from datebook where uid = " + QString::number(uid); |
228 | 228 | ||
229 | qDebug( "Query: %s", qu.latin1() ); | ||
230 | |||
229 | OSQLRawQuery raw( qu ); | 231 | OSQLRawQuery raw( qu ); |
230 | OSQLResult res = m_driver->query( &raw ); | 232 | OSQLResult res = m_driver->query( &raw ); |
231 | 233 | ||
@@ -245,7 +247,7 @@ OPimEvent ODateBookAccessBackend_SQL::find( int uid ) const{ | |||
245 | OPimEvent retDate( dateEventMap ); | 247 | OPimEvent retDate( dateEventMap ); |
246 | retDate.setExtraMap( requestCustom( uid ) ); | 248 | retDate.setExtraMap( requestCustom( uid ) ); |
247 | 249 | ||
248 | qDebug( "ODateBookAccessBackend_SQL::find() end", uid ); | 250 | qDebug( "ODateBookAccessBackend_SQL::find( %d ) end", uid ); |
249 | return retDate; | 251 | return retDate; |
250 | } | 252 | } |
251 | 253 | ||