bound forms vs. unbound forms

B

BillE

OK. Bound forms win. Unbound forms, go back to visual studio where you
belong.
Thanks.

-Bill
 
D

David W. Fenton

I'm still not sure that I could trust the whole bound form on the
web concept yet.

I don't think it would make sense to even try, as maintaining an
Access-style binding to the back end requires a whole boatload of
traffic (usually 1-second refresh intervals). On a LAN, that's no
problem whatsoever. Across the Internet, it's going to be a really
bad problem. That's precisely the reason why you can't run Access
across a WAN connection, because maintaining the bound connections
is relatively intensive in terms of traffic across the wire.

The Web is stateless, and there's a good reason for that.

Someday when everyone has fiber, maybe it can be more like Access,
but that's a long time coming, at least in the US (and I'm not even
sure it would work then).
 
J

James A. Fortune

David said:
I don't think it would make sense to even try, as maintaining an
Access-style binding to the back end requires a whole boatload of
traffic (usually 1-second refresh intervals). On a LAN, that's no
problem whatsoever. Across the Internet, it's going to be a really
bad problem. That's precisely the reason why you can't run Access
across a WAN connection, because maintaining the bound connections
is relatively intensive in terms of traffic across the wire.

The Web is stateless, and there's a good reason for that.

Someday when everyone has fiber, maybe it can be more like Access,
but that's a long time coming, at least in the US (and I'm not even
sure it would work then).

That's a good point. It's probably one I've argued for elsewhere :).
Perhaps there is more to consider. Many of the multithread techniques
use stateless techniques instead of file locks. Some even use
transactions. Thus, there might be ways to get around file lock
problems. However, stateless assumptions tend to break down in real
world applications. It's looking like Access style bound forms are
going to be mostly limited to LAN's unless someone comes up with a very
clever idea. So it looks like good advice to go unbound if the
application is going to be placed on the internet and maybe to go
unbound if you have lots of concurrent users, especially if the backend
is Access, pending new technological breakthroughs.

James A. Fortune
(e-mail address removed)
 
J

James A. Fortune

BillE said:
OK. Bound forms win. Unbound forms, go back to visual studio where you
belong.
Thanks.

Maybe: Bound forms win, but unbound forms are there too in case they're
needed.

James A. Fortune
(e-mail address removed)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top