|
|
|
|
|
在編譯程序時,我收到以下錯誤消息:
錯誤 1 ??找不到類型或命名空間名稱“Connection”(是否缺少 using 指令或程序集引用?)
代碼如下:
public void setCustAccounts(String custId) {
SQLConnection connect = acctsConnect();
Command statement = null;
ResultSet result = null;
String sql = "SELECT acctNo FROM Accounts Where Cid = '" + custId + "';";
try{
statement = connect.createStatement();
result = statement.executeQuery(sql);
while (result.next()){
result.getRow();
Account acct = new Account(result.getString("acctNo"));
custAccounts.add(acct);
}
}
finally {
connect.close();
}
}
在網(wǎng)友的幫助下,我知道了錯誤的原因,就是我忽略了字母大小寫的問題,SQLConnection應該寫為SqlConnection。
在這里勸告那些平時不注意書寫規(guī)范的人,在C#編程時,一定要注意字母大小寫的問題,否則你可能一個小小的失誤,讓你反復檢查代碼大半天,造成不必要的時間浪費。
如果本文內(nèi)容未能解決你的問題,可以看看我前面寫的匯集asp.net“找不到類型或命名空間名稱”錯誤的8種解決方法這篇文章。
相關文章