lunedì 8 luglio 2013

[PostgreSQL] Il tipo Geometry e ST_GeomFromText()

Esempio di utilizzi del tipo Geometry richiamando la funzione ST_GeomFromText().
using (NpgsqlConnection connection = new NpgsqlConnection(stringaConnessione))
{
    connection.Open();
 
    using (NpgsqlCommand cmd = new NpgsqlCommand("INSERT INTO miaTabella (campoTipoGeomtry) VALUE(st_geometryfromtext('POINT(' || @lon || ' ' || @lat ||')',4326))"connection))
    {
        cmd.Parameters.AddWithValue("@lat"latitudine);
        cmd.Parameters.AddWithValue("@lon"longitudine);
        cmd.ExecuteNonQuery();
    }
    connection.Close();
 }

Nessun commento:

Posta un commento