English 中文(简体)
在 SQL 视图中更新数据的网 。 SQL 视图中更新数据
原标题:.NET Updating Data in SQL View

我上司要求我复制一个MS Access功能,

其特征是能够在表格格中查看和更新数据库中的任何数据,特别是表格或意见。

我可以对纯表格做,因为SqlDataAdapter可以自动生成苍蝇上的相关CRUD方法,通过数据表填充/更新。

然而,视图比较棘手。 SQL 服务器管理工作室允许。 如果您在视图中单击 Edit 上xx 行, 它允许您在标准.NET DataGridView 中编辑某些列中的数据, 尽管它感觉有点神奇。

因此,有几个问题:

SSMS如何推断使用哪一种主要钥匙,即使没有钥匙在视图中?

SSMS 如何确定视图中的哪一列可以或不能编辑/插入/删除等?

在.NET 应用程序中复制这个最佳选择是什么?

能否将数据GridView 连接到与数据库有持续直接连接的旧式 oledb / obdc 连接?

任何正常的指导都会受到高度赞赏。

马龙

问题回答

只要符合某些条件,SQL服务器的视图就可更新,仿佛是一张单一的表格。

http://msdn.microsoft.com/en-us/library/ms 18795.aspx" rel="nofollow" 文档 :

平坦视图

You can modify the data of an underlying base table through a view, as long as the following conditions are true:

Any modifications, including UPDATE, INSERT, and DELETE statements, must reference columns from only one base table.

The columns being modified in the view must directly reference the underlying data in the table columns. The columns cannot be derived in any other way, such as through the following:

An aggregate function: AVG, COUNT, SUM, MIN, MAX, GROUPING, STDEV, STDEVP, VAR, and VARP.

A computation. The column cannot be computed from an expression that uses other columns. Columns that are formed by using the set operators UNION, UNION ALL, CROSSJOIN, EXCEPT, and INTERSECT amount to a computation and are also not updatable.

The columns being modified are not affected by GROUP BY, HAVING, or DISTINCT clauses.

TOP is not used anywhere in the select_statement of the view together with the WITH CHECK OPTION clause.

The previous restrictions apply to any subqueries in the FROM clause of the view, just as they apply to the view itself. Generally, the Database Engine must be able to unambiguously trace modifications from the view definition to one base table. For more information, see Modify Data Through a View.

我并不认为SSMS正在做任何特殊的事情 — 编辑视图的内容可以提供与编辑表格内容完全相同的功能。 如果用户试图做出不符合上述条件的更改, SSMS 可能会显示错误 。

SSMS如何推断使用哪一种主要钥匙,即使没有钥匙在视图中?

SQL 服务器没有这样做,因为每次只能编辑一个基本表格。

SSMS 如何确定视图中的哪一列可以或不能编辑/插入/删除等?

同样,它是由 SQL 服务器决定的,而不是由SSMS 确定。

在.NET 应用程序中复制这个最佳选择是什么?

只要您的所有观点都符合上述条件,只需做与您在表格上所做的相同的事情,但准备处理用户在做他们可以做的事情时的错误(这意味着需要一些用户培训,正如他们直接使用SSMS系统一样)。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签