[GRASS-SVN] r37737 - grass/branches/develbranch_6/vector/v.in.ascii

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Jun 4 15:46:57 EDT 2009


Author: neteler
Date: 2009-06-04 15:46:57 -0400 (Thu, 04 Jun 2009)
New Revision: 37737

Modified:
   grass/branches/develbranch_6/vector/v.in.ascii/in.c
Log:
fail on DBMI error

Modified: grass/branches/develbranch_6/vector/v.in.ascii/in.c
===================================================================
--- grass/branches/develbranch_6/vector/v.in.ascii/in.c	2009-06-04 19:46:12 UTC (rev 37736)
+++ grass/branches/develbranch_6/vector/v.in.ascii/in.c	2009-06-04 19:46:57 UTC (rev 37737)
@@ -522,7 +522,8 @@
 	if (driver) {
 	    G_message(_("Populating table..."));
 	    db_commit_transaction(driver);
-	    db_close_database_shutdown_driver(driver);
+	    if(db_close_database_shutdown_driver(driver) == DB_FAILED)
+		G_fatal_error(_("Could not close attribute table. The DBMI driver did not accept all attributes"));
 	}
 	fclose(tmpascii);
     }



More information about the grass-commit mailing list