使用插入和更新在数据库中传递未填充的值
我有一个问题,我可以在数据库中输入一些数据。我可以编码这个东西吗?我使用插入和更新查询...值是双精度型,整数...还有字符串类型.. ...
i has one problem in which i can enter some of a data to the database.Ho can i code this things..i used Insert and update query....the value is type double,integer...and also string.....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
显然,这取决于您使用的数据库类型,但为了便于讨论,让它成为 SQL Express 数据库:
您可以使用 update 语句执行类似的操作。对于其他数据库类型,请使用 OleDb 而不是 SqlClient。
Obviously it depends on the type of database you are using, but for the sake of argument let it be an SQL Express database:
You can do something similar with the update statement. For other database types use OleDb instead of SqlClient.