SqlDbType和Geography

前端之家收集整理的这篇文章主要介绍了SqlDbType和Geography前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我的列是Geography类型时,我应该使用什么sqlDbType枚举?我正在使用MS sql Server 2008 R2.

这是我正在寻找的具体内容

// 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.????);

解决方法

更新

试试这个:

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

取自Inserting SQL 2008 Geometry With a SqlCommand

原文链接:https://www.f2er.com/mssql/79016.html

猜你在找的MsSQL相关文章