
Can VB have SQL Server Return Modifiable Dynasets??
Quote:
(Michael E. Gernaey) writes:
>I was wondering, I know how to make a snapshot from SQL passthrough , but
can
>VB actually modify records(meaning get returned records) from an SQL
server
>or
>does the server have to do everything.. A small explanation would be
great>
The subject line does not seem to match the actual Q, but...
VB submits changes to SQL Server who writes out those changes. So
technically SQL Server makes the changes, but under VB's direction.
The 'trick' is to know when to do that in client code (ie a ds.Edit) vs a
Server procedure. Both have advantages, but you *can* design (oops, there
is the D word) the app so that it is a biut dumber and leverage the server
power to do the updates for you. This tends to speed things up a bit but
it might result in other things that need to be gotten around.
- Mike