Ask a Question related to ASP Database, Design and Development.
-
Perdit #1
How does Access database handle concurrent updates?
When a number of calls are made to update (add records, update field)
at the same time what does MS Access do to handle the calls?
Does Mysql with php handle similar calls better??
Thanks
Perdit Guest
-
Invalid database handle RBD
Hi All, The server I'm using is running MX 6 on Windows 2000 Server. When I'm trying to read a page I created on that server, I get this error... -
Concurrent Web- and direct access to an Access DB
I'm setting up some web-based (ASP) reports that query an Access DB. I also want certain people to be able to access and manipulate the database... -
How does the OLEDB driver handle RS Updates?
I know (now) that using ADO recordsets for updates is a bad idea, and I now longer use them for new pages we create; howevre, I just have a... -
IIS Hangs after Updates or Reboot on all ACCESS driven ASP pages
It never fails, if I install patches or just reboot, all of my ASP pages that call anythin from an Access will simple time out. Page that call... -
what is the correct way to handle empty database returns?
If I do something like : $result = mysql_query($query); $dbArray = dbResultIntoKeyArray($result); and this is the function: function... -
Brynn #2
Re: How does Access database handle concurrent updates?
I think MySQL with any script would handle it better ... in this case,
I don' t think you have to worry quite as much about the scripting
language, but be worried about the performance of the database. MySQL
is a pretty nice DB made to handle wuite a bit more than Access
(although I still prefer MS SQL)
On 11 Jan 2004 06:26:33 -0800, [email]cftranslate@hotpop.com[/email] (Perdit) wrote:
>When a number of calls are made to update (add records, update field)
>at the same time what does MS Access do to handle the calls?
>
>Does Mysql with php handle similar calls better??
>
>ThanksBrynn Guest
-
Bob Barrows #3
Re: How does Access database handle concurrent updates?
Perdit wrote:
Pretty much the same thing most rdbms's do: it encapsulates them in> When a number of calls are made to update (add records, update field)
> at the same time what does MS Access do to handle the calls?
transactions and applies appropriate locks to the tables involved to make
sure none of them step on each other until each transaction is committed.
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"
Bob Barrows Guest



Reply With Quote

