SQL Servr 2008空间数据应用系列六:基于SQLCRL的空间数据可编程(6)
来源:未知 责任编辑:责任编辑 发表时间:2013-11-17 14:38 点击:次
同样可以使用.NET CLR对其进行编程实现,这其实和查询普通数据是没有区别的,只是将查询结果转为为的是空间数据类型。可以通过如下代码实现查询空间数据到应用程序中。
static void Main(string[] args)
{
var sql = "select CityLocation from Cities where ID = 5";
var result = QueryDB(sql);
var polygon = SqlGeography.STGeomFromText(
new SqlChars(
new SqlString(result)), 4326);
Console.WriteLine(polygon.ToString());
}
private static string QueryDB(string sql)
{
using (var conn = new SqlConnection(ConfigurationManager.AppSettings["SQL2008"]))
{
if (conn.State == ConnectionState.Closed) conn.Open();
using (var cmd = new
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>