473,395 Members | 2,795 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,395 software developers and data experts.

Looking for pointers with a multi user db

I'm developing an application which will sit on a Citrix server and users
will run it from there. Now as far as I can make out citrix starts a new
process every time an .EXE is run, however as I'll be connecting to an Access
DB do I need to watch for any issues regarding the possible conflict of
records in a multiple user environment?

One problem I can think of is that someone will add a new record to the DB,
however nobody else using the app will see the record as they'll be working
with their own datasets. I can fix this with a "Refresh Records" button, but
it would be nice to do this on the fly whenever the DB is changed. Is there
a way?

I should also point out that I'm still new to VB (Have been doing it around
9-5 for the last 2 months or so) having only developed 1 other application.
(Just in case I start getting #really# technical jargon being thrown my way
:) )

Cheers
Niels
Nov 21 '05 #1
3 1052
Niels,

I wouldn't use access for a multi-user database. Have a look at MSDE or SQL
Server 2005 Express.

Chris.

http://www.microsoft.com/downloads/d...displaylang=en

http://lab.msdn.microsoft.com/express/sql/
"Niels Jensen" wrote:
I'm developing an application which will sit on a Citrix server and users
will run it from there. Now as far as I can make out citrix starts a new
process every time an .EXE is run, however as I'll be connecting to an Access
DB do I need to watch for any issues regarding the possible conflict of
records in a multiple user environment?

One problem I can think of is that someone will add a new record to the DB,
however nobody else using the app will see the record as they'll be working
with their own datasets. I can fix this with a "Refresh Records" button, but
it would be nice to do this on the fly whenever the DB is changed. Is there
a way?

I should also point out that I'm still new to VB (Have been doing it around
9-5 for the last 2 months or so) having only developed 1 other application.
(Just in case I start getting #really# technical jargon being thrown my way
:) )

Cheers
Niels

Nov 21 '05 #2
Niels,

The dataset approach is a disconnected approach with normally optimistic
concurrency.

What means that is expected that the situation as you tells seldom occurs.

Some people say that you should arrange your data arround persons and with
that avoid concurrency problems, however I do not believe that that is
forever possible and think that it will bring unwanted dessign.

However it is (normally) optimistic concurrency so you have, when you
update, to check if there was no concurrency vialation when you have a
multiuser approach.

And than you have to choise which method fits you the best to solve that.

Here some of the pages about that.

http://msdn.microsoft.com/library/de...oncurrency.asp

I hope this helps?

Cor

"Niels Jensen" <Ni*********@discussions.microsoft.com>
I'm developing an application which will sit on a Citrix server and users
will run it from there. Now as far as I can make out citrix starts a new
process every time an .EXE is run, however as I'll be connecting to an
Access
DB do I need to watch for any issues regarding the possible conflict of
records in a multiple user environment?

One problem I can think of is that someone will add a new record to the
DB,
however nobody else using the app will see the record as they'll be
working
with their own datasets. I can fix this with a "Refresh Records" button,
but
it would be nice to do this on the fly whenever the DB is changed. Is
there
a way?

I should also point out that I'm still new to VB (Have been doing it
around
9-5 for the last 2 months or so) having only developed 1 other
application.
(Just in case I start getting #really# technical jargon being thrown my
way
:) )

Cheers
Niels

Nov 21 '05 #3
Thanks for the replies guys - this gives me something to chew over at least.

Niels

"Cor Ligthert" wrote:
Niels,

The dataset approach is a disconnected approach with normally optimistic
concurrency.

What means that is expected that the situation as you tells seldom occurs.

Some people say that you should arrange your data arround persons and with
that avoid concurrency problems, however I do not believe that that is
forever possible and think that it will bring unwanted dessign.

However it is (normally) optimistic concurrency so you have, when you
update, to check if there was no concurrency vialation when you have a
multiuser approach.

And than you have to choise which method fits you the best to solve that.

Here some of the pages about that.

http://msdn.microsoft.com/library/de...oncurrency.asp

I hope this helps?

Cor

"Niels Jensen" <Ni*********@discussions.microsoft.com>
I'm developing an application which will sit on a Citrix server and users
will run it from there. Now as far as I can make out citrix starts a new
process every time an .EXE is run, however as I'll be connecting to an
Access
DB do I need to watch for any issues regarding the possible conflict of
records in a multiple user environment?

One problem I can think of is that someone will add a new record to the
DB,
however nobody else using the app will see the record as they'll be
working
with their own datasets. I can fix this with a "Refresh Records" button,
but
it would be nice to do this on the fly whenever the DB is changed. Is
there
a way?

I should also point out that I'm still new to VB (Have been doing it
around
9-5 for the last 2 months or so) having only developed 1 other
application.
(Just in case I start getting #really# technical jargon being thrown my
way
:) )

Cheers
Niels


Nov 21 '05 #4

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

Similar topics

2
by: scadav | last post by:
I am new to Perl and I am trying for figure out how to solve this problem. If anyone can give me some suggestions, I would greatly appreciate it. I am trying to read a log file and generate...
1
by: Varun Sud | last post by:
Hi, I have written an article declaring and using multi-dimensional pointers in C++. The article tries to address many of the issues related to multi-dimensional pointers asked in the forum. ...
5
by: buda | last post by:
Hi, given the following code, .... int main( void ) { char *a = { "abc", "def", "ghijkl", "o", "prs" }; // for example .... }
79
by: Me | last post by:
Just a question/observation out of frustration. I read in depth the book by Peter Van Der Linden entitled "Expert C Programming" (Deep C Secrets). In particular the chapters entitled: 4: The...
4
by: Richard Hayden | last post by:
Hi, Why does gcc (3.3.2) give me a 'initialization from incompatible pointer type' warning when compiling: int main(int argc, char** argv) { int testa; int** testp = testa; }
4
by: chy1013m1 | last post by:
I am slightly confused as to how to reference multi-dimensional array with pointers. I've tried the following code, and I was able to reference 33 as pptr int multi = {{11,27,33}, {12,13,14}};...
6
by: Bob Alston | last post by:
I am looking for others who have built systems to scan documents, index them and then make them accessible from an Access database. My environment is a nonprofit with about 20-25 case workers who...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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
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,...

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.