本文介绍了的SqlDbType与地理的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我应该使用什么样的SqlDbType枚举时,我的专栏是地理类型?我使用的MS SQL Server 2008 R2。

这就是我正在寻找的具体做法是:

  // ADO.net  - 我为的SqlDbType使用什么时,它的定义
//为地理学中的存储过程
SqlCommand的命令=新的SqlCommand();
command.CommandText =dbo.up_Foobar_Insert;
command.CommandType = CommandType.StoredProcedure;

command.Parameters.Add(@ SomeGeographyType的SqlDbType ????);
 

解决方案

更新

试试这个:

  //定义参数
command.Parameters.Add(@形,SqlDbType.NVarChar);
//
// code之间省略
//
//设置参数的值
。command.Parameters [@形]值= feature.Geometry.AsText();
 

从的

What SqlDbType enumeration should I use when my column is the Geography type? I'm using MS SQL Server 2008 R2.

This is what I'm looking for specifically:

// ADO.net - what do I use for the SqlDbType when it's defined 
// as Geography in the stored proc
SqlCommand command = new SqlCommand();
command.CommandText = "dbo.up_Foobar_Insert";
command.CommandType = CommandType.StoredProcedure;

command.Parameters.Add("@SomeGeographyType", SqlDbType.????);
解决方案

Update

Try this:

//define parameter
command.Parameters.Add("@shape", SqlDbType.NVarChar);
//
//code in between omitted
//
//set value of parameter
command.Parameters["@shape"].Value = feature.Geometry.AsText();

Taken from Inserting SQL 2008 Geometry With a SqlCommand

这篇关于的SqlDbType与地理的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-19 08:55