[][src]Function spatialite_sys::dump_kml_ex

pub unsafe extern "C" fn dump_kml_ex(
    sqlite: *mut sqlite3,
    table: *mut c_char,
    geom_col: *mut c_char,
    kml_path: *mut c_char,
    name_col: *mut c_char,
    desc_col: *mut c_char,
    precision: c_int,
    rows: *mut c_int
) -> c_int

Dumps a full geometry-table into an external KML file

\param sqlite handle to current DB connection \param table the name of the table to be exported \param geom_col the name of the geometry column \param kml_path pathname of the KML file to be exported \param name_col column to be used for KML "name" (may be null) \param desc_col column to be used for KML "description" (may be null) \param precision number of decimal digits for coordinates \param rows on completion will contain the total number of exported rows

\sa dump_kml

\return 0 on failure, any other value on success