Top "Recordset" questions

A recordset is a subset of a database table consisting of columns and rows specified by a query language

How to access values in a recordset

Take for example this code: sSQL = "select CtyMarket from Market where Country = '" & Country.Value & "'" Set rec = …

ms-access recordset
How to populate a ComboBox with a Recordset using VBA

There is some literature available at expert's exchange and at teck republic about using the combobox.recordset property to populate …

ms-access vba combobox adodb recordset
Retrieve ADO Recordset Field names (Classic ASP)

I wonder if someone can help: Long story short, I'm using MSSQL2005 to build a Pivot table. The data being …

asp-classic ado pivot recordset
How to return a recordset from a function

I'm building a data access layer in Excel VBA and having trouble returning a recordset. The Execute() function in my …

excel ado recordset vba
VBA - Create ADODB.Recordset from the contents of a spreadsheet

I am working on an Excel application that queries a SQL database. The queries can take a long time to …

excel vba adodb recordset
Java Programming - Spring and JDBCTemplate - Use query, queryForList or queryForRowSet?

My Java (JDK6) project uses Spring and JDBCTemplate for all its database access. We recently upgraded from Spring 2.5 to Spring 3 (…

java spring recordset jdbctemplate
Check a recordset for an empty field

I'm trying to pre-view if a field of the recordset is empty/null or not. If IsNull(rs.Fields("fieldname")) = …

vb6 recordset
Trying to run a SELECT sql query based on the dropdown list result. mySQL php

I haven't designed a website for about 3 years now, so I am quite rusty to say the least. I have …

php mysql select drop-down-menu recordset
Why clone an MS-Access recordset?

I'm a newbie at VBA and attempting to understand someone else's code. Set rstClone = Me.RecordsetClone rstClone.MoveFirst Why does …

ms-access vba clone recordset
insert full ADO Recordset into existing ACCESS table WITHOUT LOOP

I have a filled ADO recordset in my VBA module. I also have a table in ACCESS that has exactly …

vba ms-access ado recordset