473,805 Members | 2,278 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Can it be that NO ONE HERE knows this answer?

One more try.

After ransacking the Desktop AND Enterprise edition of Ken Getz Dev
Handbooks on Access 2002, I STILL don't know if it is or is not
possible to link a client side MDE with a WEB server MDB table using
ADO.

Does ANYONE know the correct answer to that question?
Mar 16 '06
47 1968
On Thu, 16 Mar 2006 15:44:13 -0600, "David W. Fenton"
<XX*******@dfen ton.com.invalid > wrote:
Lauren Wilson <no****@nospam. com> wrote in
news:sd******* *************** **********@4ax. com:
One more try.

After ransacking the Desktop AND Enterprise edition of Ken Getz
Dev Handbooks on Access 2002, I STILL don't know if it is or is
not possible to link a client side MDE with a WEB server MDB
table using ADO.

Does ANYONE know the correct answer to that question?


You're asking if Access can retrieve data over HTTP with ADO?

The answer is NO.

But there are ways to get HTML data into Access retrieved over HTTP,
but it doesn't involve ADO between the local and remote Access
databases.

Access 12 may actually change this. I note in yesterday's Access 12
blog entry and example of linking to a schema on a SharePoint
server, and it uses HTTP as its protocol for defining the remote
server, which suggests that Access 12 communicates with SharePoint
Server via HTTP.

I don't know if that helps or confuses things!


Oh it DEFINITELY helps! Thanks David. You are SUCH a good guy!
This is the kind of answer I was looking for -- high level view of the
issue.

Now, what about that blog you mentioned above. Can we have a link?
Mar 17 '06 #11
rkc wrote:
Your down right contempt for 90% of the people that post here is
becoming more apparent every day.


Should I run for President?

Mar 17 '06 #12
I've got my bumper sticker already ...

Get a Fair Deal with Fairfield for President
I think it will get the intellectual voter myself.
--

Terry Kreft
"Lyle Fairfield" <ly***********@ aim.com> wrote in message
news:11******** **************@ i40g2000cwc.goo glegroups.com.. .
rkc wrote:
Your down right contempt for 90% of the people that post here is
becoming more apparent every day.


Should I run for President?

Mar 17 '06 #13
You asked for an example? This is it.

Access CAN retrieve data over HTTP with ADO.

Try this:
Sub temp()
Dim r As ADODB.Recordset
Set r = New ADODB.Recordset
With r
.CursorLocation = adUseClient
.CursorType = adOpenKeyset
.LockType = adLockBatchOpti mistic
.Open "http://ffdba.com/ffdbaAccounts.x ml"
While Not .EOF
Debug.Print Trim(.Fields(1) .Value)
.MoveNext
Wend
End With
End Sub

Is it data?
Did it come "over" http?
Was it "with" ADO?

Could we write something to modify or add to this to this data and save
our updates? Yes, we could.

Mar 17 '06 #14
Lyle Fairfield wrote:
You asked for an example? This is it.

Access CAN retrieve data over HTTP with ADO.

Try this:
Sub temp()
Dim r As ADODB.Recordset
Set r = New ADODB.Recordset
With r
.CursorLocation = adUseClient
.CursorType = adOpenKeyset
.LockType = adLockBatchOpti mistic
.Open "http://ffdba.com/ffdbaAccounts.x ml"
While Not .EOF
Debug.Print Trim(.Fields(1) .Value)
.MoveNext
Wend
End With
End Sub

Is it data?
Did it come "over" http?
Was it "with" ADO?

Could we write something to modify or add to this to this data and
save our updates? Yes, we could.


<nit>
But the OP did specify data from an MDB file.
<pick>

--
I don't check the Email account attached
to this message. Send instead to...
RBrandt at Hunter dot com
Mar 17 '06 #15
The quote ti which I referred is:

"You're asking if Access can retrieve data over HTTP with ADO?

The answer is NO."

Mar 17 '06 #16
rkc
Lyle Fairfield wrote:
rkc wrote:

Your down right contempt for 90% of the people that post here is
becoming more apparent every day.

Should I run for President?


I thought Canada had a Queen.

Mar 17 '06 #17
Lauren Wilson <no****@nospam. com> wrote in
news:or******** *************** *********@4ax.c om:
Now, what about that blog you mentioned above. Can we have a
link?


http://blogs.msdn.com/access/

I would think everyone interested in the future of Access should be
reading it.

--
David W. Fenton http://www.dfenton.com/
usenet at dfenton dot com http://www.dfenton.com/DFA/
Mar 17 '06 #18

Interesting. If this works, it's exactly what I had in mind. However,
SOME people in this group are claiming this is not possible.
Hmmmm. Oh darn! Guess I'll have to just try it.

Thanks Lyle

-- LW

On 17 Mar 2006 09:49:08 -0800, "Lyle Fairfield"
<ly***********@ aim.com> wrote:
You asked for an example? This is it.

Access CAN retrieve data over HTTP with ADO.

Try this:
Sub temp()
Dim r As ADODB.Recordset
Set r = New ADODB.Recordset
With r
.CursorLocation = adUseClient
.CursorType = adOpenKeyset
.LockType = adLockBatchOpti mistic
.Open "http://ffdba.com/ffdbaAccounts.x ml"
While Not .EOF
Debug.Print Trim(.Fields(1) .Value)
.MoveNext
Wend
End With
End Sub

Is it data?
Did it come "over" http?
Was it "with" ADO?

Could we write something to modify or add to this to this data and save
our updates? Yes, we could.

Mar 17 '06 #19
On Fri, 17 Mar 2006 19:12:26 GMT, "Rick Brandt"
<ri*********@ho tmail.com> wrote:
Lyle Fairfield wrote:
You asked for an example? This is it.

Access CAN retrieve data over HTTP with ADO.

Try this:
Sub temp()
Dim r As ADODB.Recordset
Set r = New ADODB.Recordset
With r
.CursorLocation = adUseClient
.CursorType = adOpenKeyset
.LockType = adLockBatchOpti mistic
.Open "http://ffdba.com/ffdbaAccounts.x ml"
While Not .EOF
Debug.Print Trim(.Fields(1) .Value)
.MoveNext
Wend
End With
End Sub

Is it data?
Did it come "over" http?
Was it "with" ADO?

Could we write something to modify or add to this to this data and
save our updates? Yes, we could.


<nit>
But the OP did specify data from an MDB file.


True, however, I see no reason why we could not use XML.
Mar 17 '06 #20

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

Similar topics

4
2001
by: N3TB1N | last post by:
Here is my assignment. I am hoping that someone here quickly knows all of the correct answers... especially for question #5 and everything after. Thanks in advance. ___________________________________________________________________________________________________________________ class Money {
74
4066
by: Suyog_Linux | last post by:
I wish to know how the free()function knows how much memory to be freed as we only give pointer to allocated memory as an argument to free(). Does system use an internal variable to store allocated memory when we use malloc(). Plz help......
10
4856
by: Mike Wengler | last post by:
I inherited some code from a former employee, who was unable to cut the umbilical cord from VB6. His code is littered with calls to VB6 functions like Space(), String(), Left(), Mid(), Right(), Len(), Val(), etc. I know the .Net equivalents of everything except Val(). Int32.Parse allows you to filter out characters like "$" and "," and whitespace, but it still can't emulate the Val() function completely. Alright, who here in this...
1
879
by: Zorpiedoman | last post by:
Ok.... 1. Take a windows form. 2. Add a TabControl 3. Add a TabPage by right-clicking the Tabcontrol and selecting "Add Tab" The TabPage is actually added to the form, not just visually, but the code is added to the "Windows Form Designer generated code" region. I want to be able to do this myself with a control I created. In other words:
68
15722
by: James Dow Allen | last post by:
The gcc compiler treats malloc() specially! I have no particular question, but it might be fun to hear from anyone who knows about gcc's special behavior. Some may find this post interesting; some may find it off-topic or confusing. Disclaimers at end. The code samples are intended to be nearly minimal demonstrations. They are *not* related to any actual application code.
0
10614
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10369
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10109
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9186
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7649
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6876
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
4327
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3847
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3008
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.