Tagged Questions
The recordset tag has no wiki summary.
4
votes
3answers
3k views
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 the recordset have to be cloned? Why can't the code be ...
4
votes
2answers
740 views
Recordset only returning 1000 records
I'm doing an ADODB recordset.open() command with an LDAP query to get all the users from my Active Directory.
There are about 2600 users, but I'm only getting back 1000 of them.
I've tried altering ...
4
votes
3answers
4k views
VBA ListView Control
What is the fastest way to fill ListView from query when it has over 15000 lists with 9 subitems. it is taking me about 6 minute to load.
Here is what I wrote to fill ListView control.
Set rs = ...
3
votes
2answers
141 views
VB6 syntax problem, “no current record” error
I am writing an app in vb6 using sql server 2005. here is my current code.
Dim Sqlstring As String
Dim rstCurrentTicket As Recordset
Sqlstring = "Select SubmiterName, LastViewDate, Department, ...
3
votes
2answers
395 views
VB6 ADO Recordset Limit
Please don't laugh because I'm asking a VB6 question? I have to do some maintenance work. Does anyone know what the maximum number of rows can be returned to a VB6 ADO Recordset? If there is a limit, ...
3
votes
1answer
142 views
creating ado recordset from fso object
i have a fso object the gets all files in directory.
i want to create a recordset of the file name, size and date created so i will be able to sort the recordset by date.
what i tried is:
Dim rs
set ...
3
votes
2answers
99 views
Unspecific behavior of record set in vb6
Dear Expert
i have the following problem
when i try to get the value from the record set it showing error
the query is
SSql = "select doj,dol,employeeid from m_employee where employeeid='" ...
3
votes
3answers
95 views
Why is recordset result being returned in this way for Python database query?
I have searched high and low for an answer to why query results returned in this format and how to convert to a list.
data = cursor.fetchall()
When I print data, it results in:
(('car',), ('boat',), ...
3
votes
2answers
748 views
Whats the difference between rs.close vs rs = nothing in a RecordSet
I often find it confusing as to when it is appropriate to use:
rs.Close
opposed to
Set rs = Nothing
I can understand needing to close a connection to a source, but should I be using both when ...
3
votes
1answer
344 views
How should Iterator implementation deal with checked exceptions?
I'm wrapping a java.sql.RecordSet inside a java.util.Iterator. My question is, what should I do in case any recordset method throws an SQLException?
The java.util.Iterator javadoc explains which ...
3
votes
2answers
128 views
Performance of passing data between .Net and COM assemblies
I am in the process of migrating a legacy VB6 app to .Net, however since it is a high-profile business critical application, it is being done piece by piece.
In the interest of improving performance, ...
3
votes
3answers
9k views
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 (RC1). The project does not use an ORM like Hibernate nor EJB.
If I ...
3
votes
4answers
2k views
Using “SELECT SCOPE_IDENTITY()” in ADODB Recordset
Using a VBA script in Excel, I'm trying to insert a new row into a table and then get back the identity value of that row. If I run:
INSERT INTO DataSheet(databaseUserID, currentTimestamp)
VALUES (1, ...
3
votes
6answers
18k views
VBA for MS-ACCESS: how to populate a combobox with a recordset?
There is some literature available at expert's exchange and at teck republic about using the combobox.recordset property to populate a combobox in an Access form.
These controls are usually ...
2
votes
3answers
78 views
Quickly select random ID from mysql table with millions of non-sequential records
I've looked around and there doesnt seem to be any easy way to do this. It almost looks like it's easier just to grab a subset of records and do all the randomizing in code (perl). The methods I've ...
2
votes
1answer
108 views
Set OriginalValue property in VB6 classic ADO fabricated recordset
In classic ADO in VB6, in a recordset that's come from an external source, say, Set Rs = Conn.Execute("SELECT * FROM Table"), each Field has an OriginalValue property, so that after an update to a ...
2
votes
4answers
113 views
Closing PreparedStatements
Does use of PreparedStatements and ResultSets creates a "new database instance" everytime they are used?
Or, whith other words, if I use a PreparedStatement and a ResultSet, should I close them after ...
2
votes
1answer
88 views
How would you implement this query? Recordset or Sql
I just saw this question in an interview test I took few days back, I have the following table
Region Company Sales ratio_of_sales_in_region percentile_in_region
NA A1 1000 0.25 ...
2
votes
2answers
48 views
Retrieve top 48 unique records from database based on a sorted Field
I have database table that I am after some SQL for (Which is defeating me so far!)
Imagine there are 192 Athletic Clubs who all take part in 12 Track Meets per season.
So that is 2304 individual ...
2
votes
2answers
98 views
Storing recordset as instance of a class?
Have the following scenario. I have a few form, which essentially have a few dropboxes, lists etc. I populate them with records from a ms sql db. However, is there a way to query the database only ...
2
votes
2answers
868 views
Using cursor or while loop or any other way?
I've gone through several discussions related (not exact) to this but I want to know the correct solution to my situation hence posting this question.
I need to select some records from a table based ...
2
votes
1answer
968 views
MS Access Form Bound to ADO Disconnected Recordset
I seem to be clueless on this subject. I can attach an ADO recordset to a form, but I am not sure how to handle updates. I don't want to only UpdateBatch, I want to be able to detect what was changed ...
2
votes
2answers
813 views
Export Recordset to Excel
I am trying to export a Adodb Recordset to excell through a VB 6.0 application. I can do that by For Loop. But the recordset contains 100 columns with 200000 Rows. So it is consuming huge time to ...
2
votes
1answer
90 views
open recordset without cursors
generally, i connect to db with the following statement;
rs.open "query",db,1,3
now i tried (without cursors)
rs.open "query",db
the new one bring a big performance increase.
so i like to ...
2
votes
2answers
2k views
ADODB RecordSet as Access Report RecordSource
I have a simple form, a query and a report in Access 2003. I have to manipulate the results from the query in a recordset using VBA and then pass it on to the report as its RecordSource.
If I ...
2
votes
2answers
376 views
Ado.Net RecordSet member equivalent?
I'm currently re-writing a Vb6 program relying on ADO into C# w/ ADO.NET. I've run into several places in the original code with stuff like this:
Dim rs As New Recordset
rs.CacheSize = 500
Call ...
2
votes
4answers
218 views
What's the most efficient way for accessing a single record in an ADO recordset?
I want to access individual records in a classic ADO recordset without enumerating over the entire recordset using .MoveNext. I'm aware of using AbsolutePosition as well as .Filter =. What's the ...
2
votes
1answer
512 views
Recordset manipulation in SSIS
In my SSIS job, I have a need to accumulate a set of rows and commit them all transitionally when processing has completed successfully. If this was pure SQL, I would use a temp table inside a ...
2
votes
1answer
311 views
Generating an ADODB recordset programatically
I am attempting to generate an ADO RecordSet programatically within .Net. This will be passed on to existing legacy code in VB6 which is already expecting a ADO RecordSet, I do not wish to change the ...
2
votes
2answers
3k views
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 examined is limited by date range (All data for 1 week from the nearest Monday to the date ...
2
votes
2answers
189 views
How do I get previous and next rows even though some rows have been deleted?
I have the following PHP functions that determine the next and previous rows in a database. However, there are lots of occasions when rows can be deleted and therefore my functions will not work as ...
2
votes
5answers
590 views
Select data from a record collection type
I have a stored proc in oracle 11g server that has an out variable of record. I cannot edit this procedure. I am creating a function that will call the procedure and return the information in the ...
1
vote
1answer
35 views
How do I populate an ado recordset with data from a generic list programmatically from .net
Background:
Included so people don't ask Why on earth I am doing this!
I have converted an ancient extremely long winded and complex stored procedure to .NET code as a huge update was required and ...
1
vote
2answers
34 views
Only get field names from MySQL
Right now when I run the following query SELECT * FROM table I get the following response
array(1) {
[0]=>
array(36) {
[0]=>
string(5) "31764"
["id"]=>
string(5) "31764"
...
1
vote
0answers
29 views
Fetch Multiple Recordset Using MySQLi Object
I am trying to return multiple recordset using a stored procedure like this:
CREATE PROCEDURE `multiple`()
BEGIN
SELECT * FROM account;
SELECT * FROM admin;
END$$
When i hit CALL ...
1
vote
1answer
38 views
php multiple alternate column loop
im very new to php and html and im trying to create an ouput like this coming from a database table recordset. where "table record n" is the column from the db table record set
basically the table ...
1
vote
1answer
66 views
Javascript ADO recordset open method not working
I have the following code in an html page in a Javascript tag:
var adOpenDynamic = 2
var adLockOptimistic = 3
var conn_str = 'Provider=Microsoft.Jet.OLEDB.4.0; Data ...
1
vote
1answer
197 views
ADODB open recordset fails / “Operation is not allowed when object is closed”
I have the following UDF in excel which uses ADO to connect to my MSSQL server. There it should execute the scalar udf "D100601RVDATABearingAllow".
For some reason the parameters that I try to append ...
1
vote
1answer
116 views
ADO recordset fails on “memo” datatype during import into Excel
I am trying retrieve data from a SQL server, for use in some Excel 2003 macros. I would like to avoid the use of QueryTables, as I don't want this intermediate step of writing and reading from actual ...
1
vote
2answers
235 views
How do I copy and filter a DAO recordset in VBA?
Due to problems with DAO (see my previous question), I need to create an Excel VBA Recordset from an Access query and filter its results using a user-defined function.
I thought I could use the ...
1
vote
1answer
87 views
RecordSet methods generates conversion error and SQL results have no BOF And EOF
I have a SQL query that I have executed through the SQL program successfully. I ended up with the data that I combined into one column which has the header (No Column Name).
I attempted the execute ...
1
vote
2answers
796 views
Displaying a recordset on a form in Access 2010 using VBA
I'm developing a data retrieval application in Access 2010 in which the user chooses which table, columns, and rows to view by selecting listbox entries. The VBA code generates a SQL statement from ...
1
vote
1answer
313 views
Too few parameters. Expected 1 - but I have one
So I've recently been working on a VBA script to transfer an entire database of student medical records from their old one-table, 68-field, flat system to a new dynamic system with 24 related tables.
...
1
vote
3answers
173 views
PHP non eof-recordset returning empty values
i'm having a strange problem with php + recordsets.
my code:
$rc = mysql_query("select * from myTable",$db);
if (!$row = mysql_fetch_assoc($rc))
{
$eof=true;
}else{
...
1
vote
3answers
39 views
PHP newbie question: return variable with function?
i've been coding asp and was wondering if this is possible in php:
$data = getData($isEOF);
function getData($isEOF=false)
{
// fetching data
$isEOF = true;
return $data;
}
the ...
1
vote
3answers
44 views
PHP: newbie question - recordset
this might be a stupid question - but why is it necessary using 2 functions in php for opening a recordset? like:
$rc = mysql_query($sq, $db);
$rs = mysql_fetch_array($rc);
can a recordset be ...
1
vote
2answers
345 views
Making reference to a VBA recordset via SQL
I'd like to make a reference to a recordset via SQL FROM statement. Example.
I have a Recordset called RS. What I want to do is the following, in VBA.
SELECT * FROM RS
Is there a way?
1
vote
1answer
52 views
Object does not accept method
I'm experiencing a problem with my VBA application.
I need to define a Recordset and enter the result of a certain field, line by line, into an Excel Worksheet.
The problem is, when I do this
With ...
1
vote
1answer
148 views
How to use variables with Recordset!
My problem is the following:
I need to assign a value to the recordset. The problem isthat I need to use a variable. So, instead of write this
MyRecordSet![field_name]
I need to write this
...
1
vote
3answers
125 views
recordset using
Please think a site that has min. 30.000 visitors daily.
The site was coded with asp using sql 2008
There are so many lines and so many database connections
I use recordset like following
set ...