Click here to Skip to main content
16,007,885 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Removing dots in listview item Pin
Eddy Vluggen12-Jan-09 0:35
professionalEddy Vluggen12-Jan-09 0:35 
GeneralRe: Removing dots in listview item Pin
Prasadsm12-Jan-09 2:16
Prasadsm12-Jan-09 2:16 
Questiondatabase in a network Pin
hrishiS11-Jan-09 22:53
hrishiS11-Jan-09 22:53 
AnswerRe: database in a network Pin
Aman Bhullar11-Jan-09 23:14
Aman Bhullar11-Jan-09 23:14 
GeneralRe: database in a network Pin
hrishiS11-Jan-09 23:22
hrishiS11-Jan-09 23:22 
GeneralRe: database in a network Pin
Steven J Jowett12-Jan-09 1:50
Steven J Jowett12-Jan-09 1:50 
AnswerRe: database in a network Pin
Eddy Vluggen12-Jan-09 0:40
professionalEddy Vluggen12-Jan-09 0:40 
AnswerRe: database in a network Pin
Wendelius12-Jan-09 12:02
mentorWendelius12-Jan-09 12:02 
Member 4250705 wrote:
is there any chances my database will crash?, If so, what is the solution to avoid it


The database won't crash if it's used simultaneously. It's designed for that. One possible reason when Access db could crash is that you have several clients using the database with different versions of drivers (odbc, jet, whatever you use). Sometimes different versions are not compatible with each other and this can lead to problems and corruptions.

Also the database itself cannot crash since there actually is no true database, just a file and a driver at client side. But still the file may corrupt.

Member 4250705 wrote:
or does MS access has its own solution to concurrency problem or does it have any locking mechanism, to avoid crashing


Again no crashing will occur if several users update the same data. When exactly the same data is updated by 2 users at the same time, the first one who finishes the operation gets his data into the database and the second one gets an error message to the client saying that someone has already modified the data. This behaviour happens if the record locking is set to No locks (optimistic).

If the record locking is set to Edited records, then pessimistic locking is used. Now with the same example if the first user starts to edit the row, the second user cannot edit the row until the first one has finished the operation.

As Eddy Vluggen said, you can migrate to SQL Server Express Edition in order to use a true relational database instead of a 'flat-file' storage (Access). For more info: http://www.microsoft.com/express/sql/default.aspx[^]

The need to optimize rises from a bad design.My articles[^]

GeneralRe: database in a network Pin
hrishiS12-Jan-09 17:15
hrishiS12-Jan-09 17:15 
QuestionHide Process from Task Manager Pin
Anubhava Dimri11-Jan-09 20:07
Anubhava Dimri11-Jan-09 20:07 
AnswerRe: Hide Process from Task Manager Pin
Guffa11-Jan-09 20:15
Guffa11-Jan-09 20:15 
AnswerRe: Hide Process from Task Manager Pin
hrishiS11-Jan-09 20:17
hrishiS11-Jan-09 20:17 
GeneralRe: Hide Process from Task Manager Pin
Anubhava Dimri11-Jan-09 20:38
Anubhava Dimri11-Jan-09 20:38 
AnswerRe: Hide Process from Task Manager Pin
Bharat Jain11-Jan-09 20:48
Bharat Jain11-Jan-09 20:48 
GeneralRe: Hide Process from Task Manager Pin
Dave Kreskowiak12-Jan-09 2:20
mveDave Kreskowiak12-Jan-09 2:20 
GeneralRe: Hide Process from Task Manager Pin
EliottA12-Jan-09 2:45
EliottA12-Jan-09 2:45 
QuestionCrystal Reort for vb.net2005 with MS ACESS Pin
hrishiS11-Jan-09 19:53
hrishiS11-Jan-09 19:53 
AnswerRe: Crystal Reort for vb.net2005 with MS ACESS Pin
Anubhava Dimri11-Jan-09 20:34
Anubhava Dimri11-Jan-09 20:34 
GeneralRe: Crystal Reort for vb.net2005 with MS ACESS Pin
hrishiS11-Jan-09 22:03
hrishiS11-Jan-09 22:03 
QuestionDLINQ Combo Box in Datagridview Pin
Chrispie12311-Jan-09 18:57
Chrispie12311-Jan-09 18:57 
QuestionRe: How to update form control from an embedded form Pin
sohaib_a11-Jan-09 5:52
sohaib_a11-Jan-09 5:52 
AnswerRe: How to update form control from an embedded form Pin
Dave Kreskowiak11-Jan-09 11:30
mveDave Kreskowiak11-Jan-09 11:30 
GeneralRe: How to update form control from an embedded form Pin
sohaib_a13-Jan-09 9:44
sohaib_a13-Jan-09 9:44 
QuestionChecklistbox in Datagrid Pin
neha.lad10-Jan-09 18:21
neha.lad10-Jan-09 18:21 
AnswerRe: Checklistbox in Datagrid Pin
Reza Raad10-Jan-09 19:44
Reza Raad10-Jan-09 19:44 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.