0

如何查看表中所有字段的名称,在码本阶段,当您点击按钮 DOT (.) 时,例如:

dim cn as new SqlConnection ="Data Source=USER-COM\SQLEXPRESS;Initial Catalog=Data1;Integrated Security=True"


dim Command as sqlCommand

Dim DataTable As New DataTable

Command.CommandText = "Select * From Table1"
Command.CommandType=CommandType.Text
Command.Connection = Cn
cn.open

DataAdaptor = New SqlDataAdapter(Command)
DataAdaptor.Fill (DataTable)
Private function Field (NameField As FieldInTable ) 'Hair Is List Field In NameField
4

1 回答 1

0

对不起,没有办法做你想做的事。在此过程中,Visual Studio 只不过是一个文本编辑器——它不会执行 SQL 查询来让您找出字段名称。

为了实现您尝试的易用性,您需要使用更现代的东西,例如实体框架。

于 2013-10-13T04:08:10.290 回答