Skip to main content
Filter by
Sorted by
Tagged with
2 votes
0 answers
135 views

TL;DR Is it possible to search for matches using two words in LIKE operator? Eg.: rsCustomers.Filter("Name LIKE '%John%Doe%'"). I have this ADODB.Recordset called rsCustomers that persists ...
Diogo's user avatar
  • 31
0 votes
0 answers
23 views

Due to a power failure yesterday, one of my servers restarted and now a web based application on that server is so slow it is unusable. Using the Failed Request log files I have tracked the problem ...
EddieW's user avatar
  • 1
1 vote
1 answer
96 views

Work has removed MS Access from our PC's!! Therefore I am trying to learn use ADO recordsets on a more standalone basis, and trying the following code: Dim lcStrSQL As String Dim lcObjRcs ...
stuey's user avatar
  • 31
0 votes
1 answer
58 views

I have an Access DB table with 28 rows of sales persons with their respective emails and sales data. I need to loop through the table and create one Excel file for each salesperson and then send an ...
Salvatore Restucci's user avatar
-1 votes
2 answers
145 views

I am trying to write a VBA function that returns a set of records that can be used in a SQL statement. Here's what I tried: Public Function GetYieldForContainer(code As String, fldName As String) As ...
Sam JB's user avatar
  • 1
0 votes
2 answers
352 views

I am trying to display the results of a recordset inside of a report that I made, my process is that I select a year on a form then click a button, once that button is clicked it sends that year to ...
Jacob's user avatar
  • 1
0 votes
1 answer
56 views

I'm facing an issue with Access forms linked to SQL Server tables. I typically set the forms' RecordSource property using VBA in the Form_Load event, like this: Set Me.Recordset = CurrentDb....
Tom's user avatar
  • 23
0 votes
1 answer
139 views

I'm looking for a way to create an in-memory datasheet form. And I like the idea of using a disconnected recordset. But I ran into the problem of the app crashing after reassigning disconnected ...
Ілля Марко's user avatar
-1 votes
2 answers
121 views

In VBA it is very simple to define an array, read a recordeset with ADO (a simple accdb table) and then populate the array with the info from the recordset. Say I have a table with 3 columns, A is ...
Stefan Liiceanu's user avatar
1 vote
2 answers
189 views

I'm fetching data from a db2 in VB6 using ODBC. The connection and setup is fine, but there's a problem in the returned data. The fields in my record set are all rounded down to integer, so if the db ...
Filipe Lopes's user avatar
0 votes
1 answer
192 views

How do I select the actual variable if the recordset is JOINed from to tables? Dim db As DAO.Database Set db = CurrentDb Dim rs As DAO.Recordset Set rs = Currentdb.OpenRecordset("SELECT ...
Reiny's user avatar
  • 19
1 vote
1 answer
513 views

Version 7.0 of the Npgsql dotnet client interface to PostgreSQL databases introduced a breaking change in which CommandType.StoredProcedure now calls a PostgreSQL PROCEDURE rather than a FUNCTION. Our ...
Chris C.'s user avatar
  • 1,001
0 votes
1 answer
213 views

Help! I can't get my VBA to work and your help is appreciated! -Need to copy a set of folders from server to desktop. -Folders on the server are for each item by model number. -Within Access database, ...
Steve's user avatar
  • 3
0 votes
0 answers
85 views

I have one ADODB.RecordSet with 1 row and 4 columns. I want to copy the content of the recordset in the range "A1:B1, D1:E1", skipping "C1". The range was creat with the Union ...
sirtao's user avatar
  • 3,031
0 votes
0 answers
840 views

I want to host my website on Cloud Run. The website is developed in React, and packaged using golang's "embed" package, which enables the React build assets to be served by the Go "...
Rodgers Ategyeka's user avatar
0 votes
1 answer
153 views

I have a function in which a recordset is opened using module level declared variable rst. The variable is not closed on the completion of the function as it is used by another sub. It may be possible ...
Pacman's user avatar
  • 39
1 vote
1 answer
76 views

I have table called beacons which has PrimaryCode, SecondaryCode and Description I need to retrieve the full code from aonther table called data and split that code into Left$ and Right$ so that it ...
ChrisR's user avatar
  • 81
0 votes
1 answer
39 views

I have form (Arzyabi_Tamin_Konande_da) that opens in dialog form by this code: Me.Form.Dirty = False Dim ASK As Integer Dim rs As DAO.Recordset Set rs = Me.RecordsetClone With rs .MoveFirst ...
arminzf's user avatar
1 vote
2 answers
292 views

Scoured the internet as best as I could but couldn't find an answer -- I was wondering, is there some way to sort the contents of a row by record? E.g. take the following table: Key Row to sort Other ...
pmusser's user avatar
  • 125
0 votes
0 answers
124 views

rather than have all my column names across the top of the worksheet, I'm looking to have them down the left hand side eg in Column A. The value of that will then be in Column B. I have used a record ...
ChrisR's user avatar
  • 81
0 votes
0 answers
201 views

I'm trying to connect to a postgres database with adodb so that to get data within a recordset and then update this data. On postgres side : create table test (description varchar) ; I establish the ...
Edouard's user avatar
  • 7,129
0 votes
1 answer
235 views

The aim here is to copy a few rows of Excel data into a recordset object, using a header row for field names, without any sort of database/database connection in the picture. (It has been claimed, by ...
stuey's user avatar
  • 31
0 votes
0 answers
279 views

I have a Stored Procedure on the SQL Server and I pull the results via VBA (Library: MS ActiveX Data Objects Library, ADODB). Everything works fine when I only expect the query to return the result ...
smartini's user avatar
  • 455
0 votes
2 answers
406 views

When loading data from mssql database in a recordset all fields get populated correctly. If I inspect the recordset in vba debugger all fields have values. As soon as I access one field f.e to assign ...
Hadoken's user avatar
  • 21
3 votes
0 answers
130 views

I have a VB6 ADO recordest that contains unicode text and need to filter it using .filter method with unicode text. I tried to use N' function but it does not work when I use it in .Filter text Rs....
Al007's user avatar
  • 383

1
2 3 4 5
23