0

手伝ってくれませんか

Sqlconnection con;//**error**[The type or namespace name 'Sqlconnection' could not be found (are you missing a using directive or an assembly reference?]

Sqlcommand com;//**error**[The type or namespace name 'Sqlcommand' could not be found (are you missing a using directive or an assembly reference?]
4

1 に答える 1

8

大文字がありませんC- C# では大文字と小文字が区別されます。

SqlConnection
SqlCommand 
   ^
   |
   |

また、クラスの先頭にあるブロックにSystem.Data.DLL名前空間を参照して含めたことを確認する必要があります。using

using System.Data.SqlClient;
于 2013-09-26T17:52:52.733 に答える