gpt4 book ai didi

c# - 从SQL Server数据库表中检索最后一个ID

转载 作者:太空宇宙 更新时间:2023-11-03 18:19:07 25 4
gpt4 key购买 nike

如何获取在策略表中创建的最后一个ID并将其存储到变量中,以便可以将其用于另一个称为backupspec表的表。

System.Data.SqlClient.SqlConnection dataConnection = new SqlConnection();
dataConnection.ConnectionString =
@"Data Source=JAGMIT-PC\SQLEXPRESS;Initial Catalog=SumooHAgentDB;Integrated Security=True";

System.Data.SqlClient.SqlCommand dataCommand = new SqlCommand();
dataCommand.Connection = dataConnection;

//tell the compiler and database that we're using parameters (thus the @first, @last, @nick)
dataCommand.CommandText = ("Insert Policies ( PolicyName, PolicyDesc, TimeAdded,OSFlag, CreateVSSSnapshot, CreateAuditLogForRecoveries, AllowUsersToOverwriteFiles, AutoHandleEnvErrors, NotifyOnEnvErrorCount, NotifyOnFileFailure, NotifyOnFileFailureCount, NotifyOnLackOfPCContact, NotifyOnLackOfPCContactDays, NotifyOnRecoveryFailures, NotifyOnRecoveryFailureReason) values (@pn,@pd,@TimeAdded,@os,@vss,@al,@uow,@hee,@oeec,@off,@offc,@oloc,@olocd,@orf,@orfr)");




dataCommand.Parameters.AddWithValue("@pn",pn);
dataCommand.Parameters.AddWithValue("@pd",pd);
dataCommand.Parameters.AddWithValue("@TimeAdded",TimeAdded);
dataCommand.Parameters.AddWithValue("@os",os);
dataCommand.Parameters.AddWithValue("@vss",vss);
dataCommand.Parameters.AddWithValue("@al",al);
dataCommand.Parameters.AddWithValue("@uow",uow);
dataCommand.Parameters.AddWithValue("@hee",hee);
dataCommand.Parameters.AddWithValue("@oeec",oeec);
dataCommand.Parameters.AddWithValue("@off",off);
dataCommand.Parameters.AddWithValue("@offc",offc);
dataCommand.Parameters.AddWithValue("@oloc",oloc);
dataCommand.Parameters.AddWithValue("@olocd",olocd);
dataCommand.Parameters.AddWithValue("@orf",orf);
dataCommand.Parameters.AddWithValue("@orfr",orfr);

dataConnection.Open();

dataCommand.ExecuteNonquery();


dataConnection.Close();


ArrayList jaja = (ArrayList)Session["BackupSpecList"];


for (int i = 0; i < jaja.Count; i++)
{
BackupSpecEntry bsp = (BackupSpecEntry)jaja[i];
string path = bsp.path;
string inclExcl = bsp.inclExcl;
byte inclExclFlags = bsp.inclExclFlags;
bool indexContents = bsp.indexContents;
int serverBackupSpecId = bsp.serverBackupSpecId;
int freq = bsp.freq;
int retention = bsp.retention;
int policyID =DONT KNOW HOW TO GET THIS VALUE;
long specChangeTime = 0;
long backupTime = 0;

dataCommand.CommandText = ("Insert BackupSpec (PolicyID, Path, ServerBackupSpecID, Freq, Retention, InclExclFlags, InclExcl, IndexContents, SpecChangeTime, BackupTime) values (@policyID,@path,@serverBackupSpecId,@freq,@retention,@inclExclFlags,@inclExcl,@indexContents,@specChangeTime,@backupTime)");

dataCommand.Parameters.AddWithValue("@policyID", policyID);
dataCommand.Parameters.AddWithValue("@path", path);
dataCommand.Parameters.AddWithValue("@serverBackupSpecId", serverBackupSpecId);
dataCommand.Parameters.AddWithValue("@freq", freq);
dataCommand.Parameters.AddWithValue("@retention", retention);
dataCommand.Parameters.AddWithValue("@inclExclFlags", inclExclFlags);
dataCommand.Parameters.AddWithValue("@inclExcl", inclExcl);
dataCommand.Parameters.AddWithValue("@indexContents", indexContents);
dataCommand.Parameters.AddWithValue("@specChangeTime", specChangeTime);
dataCommand.Parameters.AddWithValue("@backupTime", backupTime);


dataConnection.Open();
dataCommand.ExecuteNonQuery();
dataConnection.Close();

}


标签ID出现错误...

可以有人帮我这个吗.. ??

插入后我没有得到最后创建的policyID,请帮助...
请帮忙

最佳答案

使用scope_identity:

strSQL = "INSERT INTO Policies (...) VALUES (@vals....);SELECT @result = scope_identity()"
SQLCommand.CommandText = strSQL;
SQLCommand.Parameters.Add("@result", SqlDbType.Int);
SQLCommand.ExecuteScalar();
int id = SQLCommand.Parameters["@result"].Value;

关于c# - 从SQL Server数据库表中检索最后一个ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1551985/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com