pub unsafe extern "C" fn dump_shapefile(
sqlite: *mut sqlite3,
table: *mut c_char,
column: *mut c_char,
shp_path: *mut c_char,
charset: *mut c_char,
geom_type: *mut c_char,
verbose: c_int,
rows: *mut c_int,
err_msg: *mut c_char,
) -> c_intExpand description
Dumps a full geometry-table into an external Shapefile
\param sqlite handle to current DB connection \param table the name of the table to be exported \param column the name of the geometry column \param shp_path pathname of the Shapefile to be exported (no suffix) \param charset a valid GNU ICONV charset to be used for DBF text strings \param geom_type “POINT”, “LINESTRING”, “POLYGON”, “MULTIPOLYGON” or NULL \param verbose if TRUE a short report is shown on stderr \param rows on completion will contain the total number of exported rows \param err_msg on completion will contain an error message (if any)
\return 0 on failure, any other value on success