1

したがって、次のコードはかなり紛らわしい例外を与えています。

public void BuildTable()
        {
            using (SqlConnection connection = new SqlConnection("Data Source=ylkx1ic1so.database.windows.net;Initial Catalog=hackathon;Persist Security Info=True;User ID=REDACTED;Password=REDACTED"))
            {
                SqlGeographyBuilder builder = createTestPoint();            
                SqlGeography myGeography = builder.ConstructedGeography;
                connection.Open();
                DataTable myTable = new DataTable();
                using (SqlDataAdapter adapter = new SqlDataAdapter("SELECT * FROM myTable", connection))
                {
                    SqlCommandBuilder cb = new SqlCommandBuilder(adapter);
                    adapter.Fill(myTable);
                    myTable.Rows.Add(6, "Test", myGeography);
                    adapter.Update(myTable);
                }
            }
        }

        private SqlGeographyBuilder createTestPoint()
        {
            SqlGeographyBuilder builder = new SqlGeographyBuilder();
            builder.SetSrid(4326);
            builder.BeginGeography(OpenGisGeographyType.Point);
            builder.BeginFigure(31, -85);
            builder.EndFigure();
            builder.EndGeography();
            return builder;
        }

myTable.Rows.Add(6, "Test", myGeography); 次の例外が発生する場所です:

Type of value has a mismatch with column typeCouldn't store <POINT (-85 31)> in placemark Column.  Expected type is SqlGeography.

私が得られないのは、なぜこれが失敗するのかということです。デバッグ中に私はこれを試しました:

for (int i = 0; i < myTable.Columns.Count; i++)
                    {
                        Debug.WriteLine(myTable.Columns[i].DataType);
                    }
                    Debug.WriteLine(myGeography.GetType());

そして、私の出力は次のとおりです。

System.Int32
System.String
Microsoft.SqlServer.Types.SqlGeography
Microsoft.SqlServer.Types.SqlGeography

だから、私は間違いなく SqlGeography オブジェクトを取る列に SqlGeography オブジェクトを入れようとしています。

4

2 に答える 2

2

直接挿入してみてください

string sqlCommandText = "insert into myTable(col1,col2,col3) Values(@col1,@col2,@col3)";
SqlCommand sqlCommand = new SqlCommand(sqlCommandText, connection);
sqlCommand.Parameters.AddWithValue("@col1", 6);
sqlCommand.Parameters.AddWithValue("@col2", "Test");
sqlCommand.Parameters.Add(new SqlParameter("@col3", myGeography) { UdtTypeName = "Geography" });
sqlCommand.ExecuteNonQuery(); 
于 2013-06-02T13:27:46.547 に答える
1

ただし、この質問は古いですが、この回答は将来のユーザーに役立つ可能性があります
。不一致は、SqlGeography クラスのバージョンが異なるためであることがわかりました。この問題は、正しいバージョンの Microsoft.SqlServer.Types.dll アセンブリを使用することで解決できます。
.net 4 を使用するアプリケーションの dll を 2009.100 バージョン (SQL Server 2008R2 SDK 用) に変更しましたが、SQL Server 2014 に接続していました。

于 2015-07-27T11:55:01.007 に答える