look in Mastering VB6 BOOK.
2006-12-08 03:40:05
·
answer #1
·
answered by Arpit 2
·
0⤊
0⤋
Definition of: recordset
The answer to a database query delivered through Microsoft's ActiveX Data Object (ADO) interface. It is a COM object that contains the query results, which is a group of records. See ADO.
2006-12-06 07:07:47
·
answer #2
·
answered by Sreejith Kumar P 2
·
0⤊
1⤋
A recordset is one of the two critical ADO objects anyone doing database work is going to use. You use an ADODB.Connection object to gain access to the database and execute SQL commands against it, and you use the ADODB.Recordset to look at the return values of your SQL statement.
The use of a recordset in code would look like this:
Function GetName(CustID as Integer) as String
'get the name of the customer
Dim SQL as string
SQL = "SELECT Name from Foo WHERE CustID = " _
& CustID
Dim Conn as new ADODB.Connection
Dim Rec as new ADODB.Recordset
Conn.Open "MyOleDbConnectionString"
Set Rec = Conn.Execute(SQL)
if Rec.EOF = False then
GetName = Rec("Name")
End if
Rec.Close
Conn.Close
End Function
2006-12-06 07:19:19
·
answer #3
·
answered by evolver 6
·
0⤊
1⤋
Record sets is the functionality that allows your programming interface to correspond\access tables within a database.
Hope this helps...
2006-12-06 07:08:51
·
answer #4
·
answered by m_s_m_24 4
·
0⤊
1⤋
It is entities in correct theoretical parlance, I might been off the mark here, verify it yourself.
2006-12-06 07:10:19
·
answer #5
·
answered by Andy T 7
·
0⤊
1⤋
it's for database programming.
2006-12-06 07:06:36
·
answer #6
·
answered by markbriones 2
·
0⤊
1⤋
Here you go
http://msdn2.microsoft.com/en-us/vbrun/default.aspx
///
2006-12-06 07:06:47
·
answer #7
·
answered by jan 7
·
0⤊
1⤋