Tdatabase Question

Tdatabase Question

Postby Jeff Barnes » Sat Dec 10, 2005 12:13 am

HI,

I have tried for the first time tDatabase ... wow have I been doing a lot mode code then I had to :-(

Anyway...

I open my database like this:

Use myfile.dbf shared new
DATABASE oMyfile

As a test I open a dialog with some gets and test SAVE and CANCEL.
oMyFile:Load()
Redefine Get.... oMyfile:Field1 etc....

If the user selects SAVE I issue a oMyfile:Save()

So far it works they way I expect.


Now I ran my program twice (2 copies at the same time) and something strange happens.


If I make different changes in the 2 separate programs:
example in App1 I change field1 and in App2 I change field2.

Now I issue a SAVE() and reload the dbf data oMyfile:Load()

App1 shows the changes I made in App1 and App2 shows the changes I made in App2.

I would think that one of the Apps would give a lock error and after the LOAD() command both Apps would be the same.

Any idea why this would happen?

Thanks,
Jeff
User avatar
Jeff Barnes
 
Posts: 929
Joined: Sun Oct 09, 2005 1:05 pm
Location: Ontario, Canada

Postby Antonio Linares » Sat Dec 10, 2005 8:17 am

Jeff,

Class TDataBase properly manages locks, but just when saving the data.

The problem is that it uses a buffer (an array), so when you are going to save it to the real DBF file, the values may have changed in the DBF file, and the buffer may have old ones.

You may check the buffer values against the DBF file data before saving to see if some values have changed, ot change the lock style in Class TDataBase, to lock the DBF record meanwhile you are editing, not only meanwhile you are saving.
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41442
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Postby James Bott » Sat Dec 10, 2005 10:38 pm

Jeff,

As Antonio mentioned, TDatabase uses opitmistic locking. If you want to change this to pessimistic locking, you can modify the load() method to lock the record and the save method to unlock. You will also have to remember to unlock on cancel and you need to keep in mind that if the user just wants to look at the data, the record is going to get locked.

I highly recommend that you subclass the database class and use it in your program rather than calling TDatabase directly. This way if you decide to change the behavior of the database class you can do it in the subclass and it will be used throughout your application. Just start with this:

Code: Select all  Expand view
class TXData from TDatabase
endclass


That is all you need. Then use the TXData class instead of TDatabase. Should you decide to change the load method you can just add it to TXData.

Code: Select all  Expand view
class TXData from TDatabase
   method load
endclass

method load()
   ::reclock()
return super:load()


I have oversimplifed this a little--you will have to handle a lock failure if it is already locked.

I have been using optimistic locking for many years without any problems.

You may also want to read the articles I wrote on using database classes. They are available here:

http://ourworld.compuserve.com/homepage ... rogram.htm


James
User avatar
James Bott
 
Posts: 4840
Joined: Fri Nov 18, 2005 4:52 pm
Location: San Diego, California, USA


Return to FiveWin for Harbour/xHarbour

Who is online

Users browsing this forum: Google [Bot] and 72 guests