在VB中创建SQL表和表单之间的链接

时间:2014-01-01 22:15:59

标签: sql vb.net

我使用SQL在visual basic中为项目创建了一个数据源。既然我想使用数据源中的信息,我需要链接/检索SQL表中的数据。

我需要代码(在visual basic中),它允许我从表中获取信息。

我认为它会与此类似:

Dim DatabaseConnection as (something like dataset) (File name)
Dim table1 as (I don't know the datatype) (file name)

然后能够像这样访问表中的数据:

textbox1.text = table1.customerName(2)

我没有找到任何关于这个问题的决定性帮助,很多人都说使用查询来提取数据,但我需要一些基本的注释代码,可以教我如何开始访问我的数据源中的数据。

您可以提供的任何帮助都非常有用!

1 个答案:

答案 0 :(得分:0)

使用这样的代码:

 Dim conn as string ="yourconnectionstring"
 Dim DT as DataTable
 Dim query as string ="select * from mytable"
 Dim command as Sqlcommand = new sqlcommand(query,conn)

 Dim da as new SqlDataAdapter
 DA.selectcommand = command

 da.Fill(DT)

 Textbox1.text=DT.row(0)("column")