データベースに保存されている最後のレコードを返し、その戻り値をクラス ReligionCaste のメンバー pID にインスタンス化したいのですが、タイトル エラーがあります。
私のデータベース機能は
public int LastEnteredRecord()
{
int lastId=0;
dbConnection = new SqlConnection(connectionString);
try //If error in connection opening, throws it.
{
dbConnection.Open();
command.Connection = dbConnection;
command.CommandType = CommandType.StoredProcedure;
command.CommandText = "dbo.LastRecordEntered";
try //if error in query execution, throws it.
{
lastId= Convert.ToInt32 ( command.ExecuteScalar());
// MessageBox.Show("Record Entered with ID:"+lastId .ToString ());
}
catch (SqlException ex)
{
MessageBox.Show(ex.Message);
}
dbConnection.Close();
dbConnection.Dispose();
}
catch (SqlException ex)
{
MessageBox.Show(ex.Message);
}
return lastId;
}
その戻り値をコードのインスタントクラスに割り当てたい
class ReligionCaste
{
//public int religion_ID, caste_ID;
public String religion, sect, caste, subCaste;
public int pID;
DatabaseHandler.DBCntrlr dbObj = new DatabaseHandler.DBCntrlr();
pID = dbObj.LastEnteredRecord();
}
しかし、上記のエラーが発生します。