gpt4 book ai didi

c# - 如何在 ID 自动递增时将其他值插入 Visual Studio 中的数据库

转载 作者:搜寻专家 更新时间:2023-10-30 20:23:05 25 4
gpt4 key购买 nike

Userid 是自动递增的值并给出默认值,因为它的值不起作用

string inse = @"insert into registration (userid, firstname, lastname, day, 
month, year, address, city, pincode,
state, country, phoneno, emailaddress)
values (DEFAULT, @firstname, @lastname, @day,
@month, @year, @address, @city, @pincode,
@state, @country, @phoneno, @emailaddress)";

SqlCommand cmd = new SqlCommand(inse, con);
cmd.Parameters.AddWithValue("@firstname", txtfname.Text);
cmd.Parameters.AddWithValue("@lastname", txtlname.Text);
..

等等

最佳答案

根本不要在查询中添加它,如果它是自动递增的,那么数据库将处理该 ID。

应该有效的查询:

string inse = @"insert into registration(firstname,lastname,day,month,year,
address,city,pincode,state,country,phoneno,emailaddress)
values
(@firstname,@lastname,@day,@month,@year,@address,@city,@pincode,
@state,@country,@phoneno,@emailaddress)";

关于c# - 如何在 ID 自动递增时将其他值插入 Visual Studio 中的数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54152109/

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