Ich nehme an, Sie sagen SQL (strukturierte Abfragesprache) und Sie meinen wirklich Microsoft SQL Server (das eigentliche Datenbankprodukt) - oder?
Sie können keine ganze Liste als Ganzes in SQL Server einfügen - Sie müssen für jeden Eintrag eine Zeile einfügen. Das bedeutet, dass Sie die INSERT-Anweisung mehrmals aufrufen müssen.
Gehen Sie folgendermaßen vor:
// define the INSERT statement using **PARAMETERS**
string insertStmt = "INSERT INTO dbo.REPORT_MARJORIE_ROLE(REPORT_ID, ROLE_ID, CREATED_BY, CREATED) " +
"VALUES(@ReportID, @RoleID, 'SYSTEM', CURRENT_TIMESTAMP)";
// set up connection and command objects in ADO.NET
using(SqlConnection conn = new SqlConnection(-your-connection-string-here))
using(SqlCommand cmd = new SqlCommand(insertStmt, conn)
{
// define parameters - ReportID is the same for each execution, so set value here
cmd.Parameters.Add("@ReportID", SqlDbType.Int).Value = YourReportID;
cmd.Parameters.Add("@RoleID", SqlDbType.Int);
conn.Open();
// iterate over all RoleID's and execute the INSERT statement for each of them
foreach(int roleID in ListOfRoleIDs)
{
cmd.Parameters["@RoleID"].Value = roleID;
cmd.ExecuteNonQuery();
}
conn.Close();
}