建议使用 C# 在 SQL Server 中使用插入删除更新创建的良好链接
我不记得这个网站了,但我展示了参数添加等,我们可以在其中添加参数名称,而不是将整个查询形成为单个语句。
请建议一些好的链接,其中包含使用 C# 网站处理 SQL Server 表的编码信息,如下所示大多数
- 创建表
- 插入数据
- 删除数据
- 声明主键
- 声明外键
I cannot remember the site, but I showed parameter add etc where we could add the name of parameters instead of forming the whole query as a single statement
Please suggest some good links having coding info for working with SQL Server tables using C# website, following needed most
- create table
- insert data
- delete data
- declare primary key
- declare foreign key
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
http://www.codeproject.com/KB/database/DatabaseAcessWithAdoNet1.aspx
通过此链接。您将了解如何访问商店。
http://www.codeproject.com/KB/database/DatabaseAcessWithAdoNet1.aspx
Go through this link.You will get idea how to access the storep.
您也可以访问 www.w3schools.com。
在这里您会找到您需要的一切。好吧,我建议你使用存储过程而不是 SQL 查询,因为存在 SQL 注入。此外,存储过程的执行速度很快。
You can also go to www.w3schools.com.
Here you will find everything you need. Well I suggest you to use the stored procedures instead of SQL queries, because of SQL injection. Moreover stored procedures are fast to execute.
试试这些:
David Hayden 有一个各种免费教程的长列表 - 其中还有 ADO.NET 教程的长列表。 C# Corner 还提供这样一个长文章列表、ADO.NET 上的博客文章和教程。
Try these:
David Hayden has a great long list on various free tutorials - amongst them a long list of ADO.NET tutorials, too. C# Corner also sports such a long list of articles, blog posts, and tutorials on ADO.NET.
Microsoft 的数据访问应用程序块很有用:
http://msdn.microsoft.com/en -us/library/ff649538.aspx
但是,我想不出我想从网站创建表或键的时间示例。只是一个想法。
Microsoft's Data Access Application Block is useful:
http://msdn.microsoft.com/en-us/library/ff649538.aspx
However, I can't think of an example of a time that I would want to create tables or keys from a website. Just a thought.