[Opentrep-svn] SF.net SVN: opentrep:[200] trunk/opentrep
Status: Beta
Brought to you by:
denis_arnaud
From: <den...@us...> - 2009-10-04 17:50:53
|
Revision: 200 http://opentrep.svn.sourceforge.net/opentrep/?rev=200&view=rev Author: denis_arnaud Date: 2009-10-04 17:50:46 +0000 (Sun, 04 Oct 2009) Log Message: ----------- [Dev] When indexing, if there is an exception, it is now propagated, so that the program can be stopped. Modified Paths: -------------- trunk/opentrep/db/data/ref_place_details.csv trunk/opentrep/opentrep/command/DBManager.cpp Modified: trunk/opentrep/db/data/ref_place_details.csv =================================================================== --- trunk/opentrep/db/data/ref_place_details.csv 2009-10-04 17:33:37 UTC (rev 199) +++ trunk/opentrep/db/data/ref_place_details.csv 2009-10-04 17:50:46 UTC (rev 200) @@ -7853,7 +7853,7 @@ slg,,,y,y,n,n, ar ,us,namer,itc1,us107, -94.53 , 36.18 , slh,,,y,y,n,y, ,vu,austl,itc3,vu115, 167.6 , -15.85 , sli,,,y,y,n,y, ,zm,afric,itc2,zm, 26.37 , -12.17 , -slj,chd,y,y,n,y, az ,us,namer,us109, -111.916364 , 33.298523 , +slj,chd,,y,y,n,y, az ,us,namer,us109, -111.916364 , 33.298523 , slk,,,y,y,n,y, ny ,us,namer,itc1,us105, -74.2 , 44.4 , sll,,,y,y,n,y, ,om,meast,itc2,om, 54.1 , 17.03 , slm,,,y,y,n,y, ,es,europ,itc2,es045, -5.65 , 40.97 , Modified: trunk/opentrep/opentrep/command/DBManager.cpp =================================================================== --- trunk/opentrep/opentrep/command/DBManager.cpp 2009-10-04 17:33:37 UTC (rev 199) +++ trunk/opentrep/opentrep/command/DBManager.cpp 2009-10-04 17:50:46 UTC (rev 200) @@ -168,6 +168,7 @@ } catch (std::exception const& lException) { OPENTREP_LOG_ERROR ("Error: " << lException.what()); + throw SQLDatabaseException(); } return hasStillData; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |