Language: C#
Skill: Beginner
Tool: Visual Studio 2010
Hello StackOverflow,
I have made a stored procedure for inserting data into a table...
Stored proc works fine when I execute it in Server Explorer and it inserts into that table...
But when I call this stored proc from my code, I got output "1 row affected" but no data is inserted into the table ...!
I'm puzzled what is happening.
private void btn_AssignTeacher_Click(object sender, EventArgs e)
{
bool result = false;
SqlCommand cmd = new SqlCommand("sprocInsert");
int teacherid = comboBox_teachername.SelectedIndex +1;
int coursesinfoid = comboBox_coursename.SelectedIndex+1;
int daysid = comboBox_day.SelectedIndex+1;
int slotsid = comboBox_slot.SelectedIndex+1;
cmd.Parameters.Add("@coursesinfoid", SqlDbType.Int).Value = coursesinfoid;
cmd.Parameters.Add("@daysid", SqlDbType.Int).Value = daysid;
cmd.Parameters.Add("@slotsid", SqlDbType.Int).Value = slotsid;
cmd.Parameters.Add("@teacherid", SqlDbType.Int).Value = teacherid;
result = AssignCoursesMgr.Insert(cmd);
if (result == true)
MessageBox.Show("teacher assign successfully");
}
class AssignCoursesManager
{
DBLayer DBworks;
public bool Insert(SqlCommand cmd)
{
DBworks = new DBLayer();
cmd.CommandType = System.Data.CommandType.StoredProcedure;
return DBworks.InsertData(cmd);
}
}
public bool InsertData(SqlCommand cmd)
{
int result = 0;
SqlConnection conn = CreateConnection(ConnectionString);
try
{
cmd.Connection = conn;
cmd.Connection.Open();
result = cmd.ExecuteNonQuery();
}
catch (SqlException exc)
{
MessageBox.Show(exc.Message);
}
finally
{
conn.Close();
cmd.Dispose();
}
if (result > 0)
return true;
else return false;
}
And here is the "sprocInsert"
ALTER PROCEDURE dbo.sprocInsert
(
@coursesinfoid int,
@teacherid int,
@daysid int,
@slotsid int
)
AS
INSERT INTO schedule (coursesinfoid,teacherid,daysid,slotsid)
VALUES(@coursesinfoid,@teacherid,@daysid,@slotsid)
using(){}to make sure your changes are commited – Emmanuel N Dec 22 '11 at 14:54SqlCommand- not two or three method calls later..... – marc_s Dec 22 '11 at 15:11