[][src]Function spatialite_sys::dump_kml

pub unsafe extern "C" fn dump_kml(
    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
) -> 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

\sa dump_kml_ex

\return 0 on failure, any other value on success