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(); } |
lunedì 8 luglio 2013
[PostgreSQL] Il tipo Geometry e ST_GeomFromText()
Esempio di utilizzi del tipo Geometry richiamando la funzione ST_GeomFromText().
Etichette:
"c#",
"Geometry",
"postegresql",
"ST_GeomFromText()"
Iscriviti a:
Commenti sul post (Atom)
Nessun commento:
Posta un commento