how do i use rs!field in vb.net - TechRepublic
General discussion
May 3, 2005 at 09:43 PM
plr007

how do i use rs!field in vb.net

by plr007 . Updated 15 years, 10 months ago

is there anyway i can use rs!field (ex: rs!customer_id) in vb.net.

when i code it in VB.net

dim str as string
set rs = new adodb.recordset
dim x as single
str = “select customer_id from person”
rs.open str, dbconn, 3,2

x = rs!customer_id ”’ this is error it says to many arguments..

how do i solve it in vb.net because this the fastest way to update and manipulate records in the data using VB6 using ADO. is there i can access the records using rs? pls help

This discussion is locked

All Comments