473,399 Members | 3,656 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,399 software developers and data experts.

Reading CSV into recordset using GetString - msdn account

I have two(2) issues.

I'm experiencing a little difficulty and having to resort to a work around.
I already found one bug, although stated the bug was only in ODBC, which I'm
not using. It appears to be in the OLEDB driver also.

My connection was:
conn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & strPath & ";" &
"Extended Properties='Text;HDR=NO;FMT=Delimited'"

I got information from here:
http://msdn.microsoft.com/library/de...ng03092004.asp

I am using a schema.ini file and in it was:

[austin.csv]
Format=CSVDelimited

Col1=personid Text
Col2=currDate Text
Col3=transCode Text
Col4=caseNum Text
Col5=caseType Text
Col6=defName Text
Col7=unknown Text

1. The first line in the csv file was being ignored, as if it was a header
line. I verified by putting a blank line in the file and then I was able to
see the first record, which was now the second line.

I read this was a bug but for FirstRowHasNames. It wasn't what I was using
but the effect was the same for HDR=NO.
"However, due to a bug in the ODBC driver, specifying the FirstRowHasNames
setting currently has no effect. In other words, the Excel ODBC driver (MDAC
2.1 and later) always treats the first row in the specified data source as
field names."

Ref: http://support.microsoft.com/kb/257819

I found another article that fold me to use something else in the schema.ini
file:
http://www.aspdb.com/Site/tor/Manual04/T_csvtext.shtm

ColNameHeader=False

My current schema.ini:
[austin.csv]
Format=CSVDelimited
ColNameHeader=False

Col1=personid Text
Col2=currDate Text
Col3=transCode Text
Col4=caseNum Text
Col5=caseType Text
Col6=defName Text
Col7=unknown Text

I now get the first row without the need for the blank line.

My current connection string:
conn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & strPath & ";" &
"Extended Properties=Text"
2. I am getting a blank line using rs.GetString but at the end.

My line:
arrAccounts = split(rs.GetString(adClipString,,,,""),vbCr)

I thought perhaps it was returning a blank line because I ended my cursor,
in the csv file on a blank line at the end. I have this issue using FSO and
CSV files. I removed it but I still have the issue.

I am able to get past it by reducing my upperboundary by 1 but it feels like
a work-around.

for i = 0 to ubound(arrAccounts) - 1
lprt arrAccounts(i)
next

Full source for this issue:
dim conn, rs, strPath, arrAccounts, arr, i
Set conn = Server.CreateObject("ADODB.Connection")
Set rs = Server.CreateObject("ADODB.Recordset")
strPath = Server.Mappath("/csv/")
conn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & strPath & ";" &
"Extended Properties=Text"
rs.Open "SELECT DISTINCT caseNum FROM austin.csv", conn, adOpenStatic,
adLockOptimistic, adCmdText
arrAccounts = split(rs.GetString(adClipString,,,,""),vbCr)
rs.Close
for i = 0 to ubound(arrAccounts) - 1
lprt arrAccounts(i)
next

Am I causing the issue myself or is this a known issue?

TIA...

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp

Jul 22 '05 #1
14 5803

"Roland Hall" <no****@nonononono.us> wrote in message
news:OI**************@TK2MSFTNGP10.phx.gbl...
:I have two(2) issues.
:
: I'm experiencing a little difficulty and having to resort to a work
around.
: I already found one bug, although stated the bug was only in ODBC, which
I'm
: not using. It appears to be in the OLEDB driver also.
:
: My connection was:
: conn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & strPath & ";"
&
: "Extended Properties='Text;HDR=NO;FMT=Delimited'"
:
: I got information from here:
:
http://msdn.microsoft.com/library/de...ng03092004.asp
:
: I am using a schema.ini file and in it was:
:
: [austin.csv]
: Format=CSVDelimited
:
: Col1=personid Text
: Col2=currDate Text
: Col3=transCode Text
: Col4=caseNum Text
: Col5=caseType Text
: Col6=defName Text
: Col7=unknown Text
:
: 1. The first line in the csv file was being ignored, as if it was a header
: line. I verified by putting a blank line in the file and then I was able
to
: see the first record, which was now the second line.
:
: I read this was a bug but for FirstRowHasNames. It wasn't what I was
using
: but the effect was the same for HDR=NO.
: "However, due to a bug in the ODBC driver, specifying the FirstRowHasNames
: setting currently has no effect. In other words, the Excel ODBC driver
(MDAC
: 2.1 and later) always treats the first row in the specified data source as
: field names."
:
: Ref: http://support.microsoft.com/kb/257819
:
: I found another article that fold me to use something else in the
schema.ini
: file:
: http://www.aspdb.com/Site/tor/Manual04/T_csvtext.shtm
:
: ColNameHeader=False
:
: My current schema.ini:
: [austin.csv]
: Format=CSVDelimited
: ColNameHeader=False
:
: Col1=personid Text
: Col2=currDate Text
: Col3=transCode Text
: Col4=caseNum Text
: Col5=caseType Text
: Col6=defName Text
: Col7=unknown Text
:
: I now get the first row without the need for the blank line.
:
: My current connection string:
: conn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & strPath & ";"
&
: "Extended Properties=Text"
:
:
: 2. I am getting a blank line using rs.GetString but at the end.
:
: My line:
: arrAccounts = split(rs.GetString(adClipString,,,,""),vbCr)
:
: I thought perhaps it was returning a blank line because I ended my cursor,
: in the csv file on a blank line at the end. I have this issue using FSO
and
: CSV files. I removed it but I still have the issue.
:
: I am able to get past it by reducing my upperboundary by 1 but it feels
like
: a work-around.
:
: for i = 0 to ubound(arrAccounts) - 1
: lprt arrAccounts(i)
: next
:
: Full source for this issue:
: dim conn, rs, strPath, arrAccounts, arr, i
: Set conn = Server.CreateObject("ADODB.Connection")
: Set rs = Server.CreateObject("ADODB.Recordset")
: strPath = Server.Mappath("/csv/")
: conn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & strPath & ";"
&
: "Extended Properties=Text"
: rs.Open "SELECT DISTINCT caseNum FROM austin.csv", conn, adOpenStatic,
: adLockOptimistic, adCmdText
: arrAccounts = split(rs.GetString(adClipString,,,,""),vbCr)
: rs.Close
: for i = 0 to ubound(arrAccounts) - 1
: lprt arrAccounts(i)
: next
:
: Am I causing the issue myself or is this a known issue?
:
: TIA...
:
: --
: Roland Hall
: /* This information is distributed in the hope that it will be useful, but
: without any warranty; without even the implied warranty of merchantability
: or fitness for a particular purpose. */
: Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
: WSH 5.6 Documentation -
http://msdn.microsoft.com/downloads/list/webdev.asp
: MSDN Library - http://msdn.microsoft.com/library/default.asp
:
:
:
Jul 22 '05 #2
Roland Hall wrote:
"Roland Hall" <no****@nonononono.us> wrote in message
news:OI**************@TK2MSFTNGP10.phx.gbl...
I have two(2) issues. <snip>
Am I causing the issue myself or is this a known issue?

Can you post a small extract from your csv file so we can attempt to
reproduce this?

Bob Barrows

--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Jul 22 '05 #3
Roland Hall wrote:
"Roland Hall" <no****@nonononono.us> wrote in message
news:OI**************@TK2MSFTNGP10.phx.gbl...


Oh!, I just noticed your revised subject line. Are you an msdn subscriber
and were these two issues directed at MS? I'll see if I can find someone to
respond

--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Jul 22 '05 #4
Roland Hall wrote:

In order to get MS's attention, you have to use the no-spam email alias that
you got when you registered at
http://msdn.microsoft.com/newsgroups/managed/. You can guarantee that alias
will be used if you post using the web-based system they've created.
otherwise, you have to create an account in OE using the no-spam alias you
chose (I do not remember "nononono.us" being one of the email domain choices
at the registration site, but the site is experiencing problems right now so
I can't confirm it one way or the other).

See:
http://msdn.microsoft.com/subscripti...px#configuring

"In the E-mail Address box, add the no-spam alias you registered. If you
post with any other e-mail address, we cannot guarantee a response from the
community or a Microsoft Support Engineer within two business days. "

Bob Barrows
--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Jul 22 '05 #5
"Bob Barrows [MVP]" <re******@NOyahoo.SPAMcom> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
: Roland Hall wrote:
:
: In order to get MS's attention, you have to use the no-spam email alias
that
: you got when you registered at
: http://msdn.microsoft.com/newsgroups/managed/. You can guarantee that
alias
: will be used if you post using the web-based system they've created.
: otherwise, you have to create an account in OE using the no-spam alias you
: chose (I do not remember "nononono.us" being one of the email domain
choices
: at the registration site, but the site is experiencing problems right now
so
: I can't confirm it one way or the other).

They asked what email address I wanted to use so they would know it was
managed. That's what I decided on.

: See:
:
http://msdn.microsoft.com/subscripti...px#configuring
:
: "In the E-mail Address box, add the no-spam alias you registered. If you
: post with any other e-mail address, we cannot guarantee a response from
the
: community or a Microsoft Support Engineer within two business days. "
:
: Bob Barrows
: --
: Microsoft MVP - ASP/ASP.NET
: Please reply to the newsgroup. This email account is my spam trap so I
: don't check it very often. If you must reply off-line, then remove the
: "NO SPAM"
:
:
Jul 22 '05 #6
"Bob Barrows [MVP]" wrote in message
news:eS**************@TK2MSFTNGP14.phx.gbl...
: Roland Hall wrote:
: > "Roland Hall" <no****@nonononono.us> wrote in message
: > news:OI**************@TK2MSFTNGP10.phx.gbl...
: >> I have two(2) issues.
: <snip>
: >>
: >> Am I causing the issue myself or is this a known issue?
: >>
: Can you post a small extract from your csv file so we can attempt to
: reproduce this?

Here is a massaged record from the file:
999999,6232005,AD,3998717,TR,"KKKKKK, QQQQQQQ ",1111
SUENA ST , ,AUSTIN
,TX,71741,1111111111,1704866,EE,3071963,111111111,
, ,
,331.5,0,331.5,3091998,FAIL TO MAINTAIN FINANCIAL RESP ,OOOOOOOOOO &
OOOOO ,VRY11F ,TX,318,CHEV , ,BLU, ,N ,0, ,Y

It's fixed-length but also comma-delimited so I'm using comma-delimited.

This is my work-around since I get an extra record at the bottom:
for i = 0 to ubound(arrAccounts) - 1

This shows how the data gets read, folder is massaged. I changed my
connectionstring because HDR=NO was not working. I'm controlling it with
the schema.ini file.

dim conn, rs, strPath, arrAccounts, arr, count, records(), x
count = 0
set conn = Server.CreateObject("ADODB.Connection")
Set rs = Server.CreateObject("ADODB.Recordset")
strPath = Server.Mappath("/somefolder/")
conn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & strPath & ";" &
"Extended Properties=Text"
rs.Open "SELECT DISTINCT case_num FROM austin.csv", conn, adOpenStatic,
adLockOptimistic, adCmdText
arrAccounts = split(rs.GetString(adClipString,,,,""),vbCr)
rs.Close
rs.Open "SELECT * FROM austin.csv", conn, adOpenStatic, adLockOptimistic,
adCmdText
arr = split(rs.GetString(adClipString,,vbTab,,"null"),vb Cr)
rs.Close
set rs = Nothing
conn.Close
set conn = Nothing
prt "<!DOCTYPE HTML PUBLIC ""-//W3C//DTD HTML 4.0 Transitional//EN"">"
prt "<html>"
prt "<body>"
removeDuplicates arrAccounts, arr

schema.ini file:
[austin.csv]
Format=CSVDelimited
ColNameHeader=False

Col1=personid Text
Col2=curr_date Text
Col3=trans_code Text
Col4=case_num Text
Col5=case_type Text
Col6=def_name Text
Col7=def_add1 Text
Col8=def_add2 Text
Col9=def_city Text
Col10=def_state Text
Col11=def_phone Text
Col12=def_zip Text
Col13=dl_num Text
Col14=dl_state Text
Col15=def_dob Text
Col16=ss_num Text
Col17=empl_name Text
Col18=empl_addr Text
Col19=empl_phone Text
Col20=ttl_due Text
Col21=ttl_paid Text
Col22=bal_due Text
Col23=issue_date Text
Col24=viol_desc Text
Col25=viol_place Text
Col26=plate_num Text
Col27=plate_st Text
Col28=plate_exp Text
Col29=vehi_make Text
Col30=vehi_model Text
Col31=vehi_color Text
Col32=conviction Text
Col33=status_cod Text
Col34=stats_date Text
Col35=bad_addr Text
Col36=adjudicated Text

I have the code working but I was only concerned about the HDR=NO not
working and the extra array element at the upper boundary.

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp
Jul 22 '05 #7
"Bob Barrows [MVP]" wrote in message
news:Oq**************@TK2MSFTNGP14.phx.gbl...
: Roland Hall wrote:
: > "Roland Hall" <no****@nonononono.us> wrote in message
: > news:OI**************@TK2MSFTNGP10.phx.gbl...
:
: Oh!, I just noticed your revised subject line. Are you an msdn subscriber
: and were these two issues directed at MS? I'll see if I can find someone
to
: respond

Or anyone that has an answer. I'm concerned with the HDR=NO in the Jet
OLEDB and GetString returning and extra line only when read from a text
file.

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp
Jul 22 '05 #8
Roland Hall wrote:
"Bob Barrows [MVP]" <re******@NOyahoo.SPAMcom> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
Roland Hall wrote:

In order to get MS's attention, you have to use the no-spam email
alias that you got when you registered at
http://msdn.microsoft.com/newsgroups/managed/. You can guarantee
that alias will be used if you post using the web-based system
they've created. otherwise, you have to create an account in OE
using the no-spam alias you chose (I do not remember "nononono.us"
being one of the email domain choices at the registration site, but
the site is experiencing problems right now so I can't confirm it
one way or the other).


They asked what email address I wanted to use so they would know it
was managed. That's what I decided on.


When I go to the registration site
(https://msdn.one.microsoft.com/Subsc...NewsGroups.asp - this
link only works if you sign into http://msdn.microsoft.com/subscriptions/
with your Passport), I am given a choice of 5 domains to use for my alias:

@community.nospam
@newsgroup.nospam
@noemail.nospam
@nospam.nospam
@online.nospam

There is no way to choose another domain. Once you select a posting alias
using one of those domains, you need to use it per the instructions in this
link:

http://msdn.microsoft.com/subscripti...px#configuring
Bob Barrows

--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Jul 22 '05 #9
"Bob Barrows [MVP]" wrote in message
news:eP**************@TK2MSFTNGP14.phx.gbl...
: Roland Hall wrote:
: > "Bob Barrows [MVP]" <re******@NOyahoo.SPAMcom> wrote in message
: > news:%2****************@tk2msftngp13.phx.gbl...
: >> Roland Hall wrote:
: >>
: >> In order to get MS's attention, you have to use the no-spam email
: >> alias that you got when you registered at
: >> http://msdn.microsoft.com/newsgroups/managed/. You can guarantee
: >> that alias will be used if you post using the web-based system
: >> they've created. otherwise, you have to create an account in OE
: >> using the no-spam alias you chose (I do not remember "nononono.us"
: >> being one of the email domain choices at the registration site, but
: >> the site is experiencing problems right now so I can't confirm it
: >> one way or the other).
: >
: > They asked what email address I wanted to use so they would know it
: > was managed. That's what I decided on.
: >
:
: When I go to the registration site
: (https://msdn.one.microsoft.com/Subsc...NewsGroups.asp -
this
: link only works if you sign into http://msdn.microsoft.com/subscriptions/
: with your Passport), I am given a choice of 5 domains to use for my alias:
:
: @community.nospam
: @newsgroup.nospam
: @noemail.nospam
: @nospam.nospam
: @online.nospam
:
: There is no way to choose another domain. Once you select a posting alias
: using one of those domains, you need to use it per the instructions in
this
: link:
:
:
http://msdn.microsoft.com/subscripti...px#configuring

I had never heard of that before. I was informed differently and I believe
that conversation took place over the phone.
Thanks I'll check it out.

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp
Jul 22 '05 #10
I haven't been able to get into the configuration. It says it's down but I
could connect from another server but not sure how to get there.

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp
Jul 22 '05 #11
Roland Hall wrote:
I haven't been able to get into the configuration. It says it's down
but I could connect from another server but not sure how to get there.


I ran into the same problem yesterday but was able to get in after several
attempts.

FWIW, I got right in a couple min. ago. Steps:
1. go to http://msdn.microsoft.com/subscriptions/
2. Click the button to sign into MSDN Downloads with Passport
3. After successfully signing in, click the word "here" in this sentence:

Get Unlimited Free PSS Support for Technical Issues!
Unlimited free support is available now to MSDN subscribers via the MSDN
Managed Newsgroups. In over 200 developer newsgroups, Microsoft will assure
that you receive a response to your posts within 2 business days. This
service is included as a benefit of your active subscription. You can get
started by registering here.
which brings you here:
https://msdn.one.microsoft.com/Subsc...NewsGroups.asp, where
you register your alias, linking it to your Passport and enabling MS PSS to
recognize your posts in the newsgroups.

At least, that's my understanding of the process. I don't claim to speak
for MS or MSDN.

Bob Barrows
--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Jul 22 '05 #12
"Bob Barrows [MVP]" wrote in message
news:uF*************@TK2MSFTNGP10.phx.gbl...
: Roland Hall wrote:
: > I haven't been able to get into the configuration. It says it's down
: > but I could connect from another server but not sure how to get there.
:
: I ran into the same problem yesterday but was able to get in after several
: attempts.
:
: FWIW, I got right in a couple min. ago. Steps:
: 1. go to http://msdn.microsoft.com/subscriptions/
: 2. Click the button to sign into MSDN Downloads with Passport
: 3. After successfully signing in, click the word "here" in this sentence:

That's what I was doing and #2 would fail with "We're busy. Go away!"

: Get Unlimited Free PSS Support for Technical Issues!
: Unlimited free support is available now to MSDN subscribers via the MSDN
: Managed Newsgroups. In over 200 developer newsgroups, Microsoft will
assure
: that you receive a response to your posts within 2 business days. This
: service is included as a benefit of your active subscription. You can get
: started by registering here.
:
:
: which brings you here:
: https://msdn.one.microsoft.com/Subsc...NewsGroups.asp,
where
: you register your alias, linking it to your Passport and enabling MS PSS
to
: recognize your posts in the newsgroups.
:
: At least, that's my understanding of the process. I don't claim to speak
: for MS or MSDN.

Well, someone needs to. (O:=

Ok, I got it updated. Thanks for the help. What should I do about my
question now? Any ideas?

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp
Jul 22 '05 #13
Roland Hall wrote:
Ok, I got it updated. Thanks for the help. What should I do about my
question now? Any ideas?


None, unfortunately. Maybe repost it?
--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Jul 22 '05 #14
"Bob Barrows [MVP]" wrote in message
news:%2******************@TK2MSFTNGP12.phx.gbl...
: Roland Hall wrote:
: > Ok, I got it updated. Thanks for the help. What should I do about my
: > question now? Any ideas?
:
: None, unfortunately. Maybe repost it?

Holy Moly, a third time? Ok.

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp
Jul 23 '05 #15

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: PinkGuava | last post by:
Hi, I have a T-SQL stored procedure that returns both output parameters and a recordset. How do I retrieve them in my ASP script? As far as I know, the ADO Command object can be used to retrieve...
27
by: Oscar | last post by:
I am looking for a way to pass an ADO recordset that has been retrieved in an ASP page to another HTML-page. Is there someone who can provide me with a small sample or a link to see how this is...
5
by: !TG | last post by:
I currently use Do while loop, but I'd rather use a For Loop though I have never gotten the hang of them. Would some one please be so kind as to show me how to loop through a recordset.
2
by: Roland Hall | last post by:
I have two(2) issues. I'm experiencing a little difficulty and having to resort to a work around. I already found one bug, although stated the bug was only in ODBC, which I'm not using. It...
3
by: Roland Hall | last post by:
Three times the charm? Sorry for the repost. Trying to get my account right. I have two(2) issues. I'm experiencing a little difficulty and having to resort to a work around. I already...
18
by: Darryl Kerkeslager | last post by:
When I open an ADO Recordset, I close it. However, it seems that there may be some difference in this manner of opening a Recordset: Dim rL As ADODB.Recordset Set rL = New ADODB.Recordset ...
7
by: John Dann | last post by:
I'm trying to read some binary data from a file created by another program. I know the binary file format but can't change or control the format. The binary data is organised such that it should...
9
by: Johnfli | last post by:
ADODB.Recordset error '800a0cb3' Current Recordset does not support bookmarks. This may be a limitation of the provider or of the selected cursortype. I am moving my webserver from NT4 using SQL...
2
by: Michael | last post by:
After reviewing the internet I did not find strong and simple example that transfer recordset to simple CSV file. Thanks for any help
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.