明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1214|回复: 1

求高手指点

[复制链接]
发表于 2006-8-17 17:18:00 | 显示全部楼层 |阅读模式

这是我的一个读取sql里数据的vb,库里有很多条记录的,我怎么只能读出其中的第一条记录呀?高手们帮我看看吧!
Private Sub hb_Click()
Dim ysjlj As New ADODB.Connection
Dim ygg01 As New ADODB.Recordset
Dim xsjlj As New ADODB.Connection
Dim xgg01 As New ADODB.Recordset
Dim ygg1, xgg1 As String
Dim yljzfc, xljzfc, ysj, xsj As String '源新数据库连接字符串

yljzfc = "provider=sqloledb.1;password=" & yyhmm.Text & ";persist security info=true;user id=" & yyhm.Text & ";initial catalog=" & ysjk.Text & " ;data source=" & yfwq.Text & ""
ysjlj.Open yljzfc '连接源数据库

xljzfc = "provider=sqloledb.1;password=" & xyhmm.Text & ";persist security info=true;user id=" & xyhm.Text & ";initial catalog=" & xsjk.Text & " ;data source=" & xfwq.Text & ""
xsjlj.Open xljzfc '连接源数据库
'xsj = " select * into gg1 from gg01 where ga01='1'"
'xgg01.Open xsj, xsjlj, adOpenKeyset, adLockPessimistic '在新数据库中新建gg1表
'xgg01.Close
'下面将源数据库中gg01表的内容导入到gg1表中。
ysj = "select *from gg01 where ga033='114'"
ygg01.Open ysj, ysjlj, adOpenKeyset, adLockPessimistic

xsj = "select * from gg1"
xgg01.Open xsj, xsjlj, adOpenKeyset, adLockPessimistic
i = 0
If Not ygg01.EOF Then
i = i + 1
 xgg01.AddNew
 xgg01.Fields("ga01") = ygg01.Fields("ga01")
 xgg01.Fields("ga18") = ygg01.Fields("ga18")
 xgg01.Fields("ga03") = ygg01.Fields("ga03")
 xgg01.Fields("ga04") = ygg01.Fields("ga04")
'xgg01.Update
 'Print ygg01.Fields("ga18")
 ygg01.MoveNext
 xgg01.MoveNext
 
Else
 'ygg01.Close
 'xgg01.Close
  'Exit Sub
End If
 
 rint i

;我的i值怎么都是1,可是我的库里有很多行的.

发表于 2006-8-17 18:23:00 | 显示全部楼层

Do While Not ygg01.EOF

..........

Loop

您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-27 00:36 , Processed in 0.169633 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表