Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 2 of 2 total
Thread Changes in DBSRVR
Sat, Mar 4 2006 10:31 AMPermanent Link

"Jose Eduardo Helminsky"
Tim

I've made a little change in DBSRVR project. In my tests I put inside
FormCreate:

  with ServerEngine do begin
     MaxTableDataBufferSize := MaxTableDataBufferSize * 4;
     MaxTableDataBufferCount := MaxTableDataBufferCount * 4;
     MaxTableIndexBufferSize := MaxTableIndexBufferSize * 4;
     MaxTableIndexBufferCount := MaxTableIndexBufferCount * 4;
     MaxTableBlobBufferSize := MaxTableBlobBufferSize * 4;
     MaxTableBlobBufferCount := MaxTableBlobBufferCount * 4;
     TableMaxReadLockCount := 10;
     TableTransLockRetryCount := 4000;             // ****
  end;

I works like I expect specially the row with *. But I've used DBSRVR as a
service, where can I put the following changes to work like an application ?

Thanks
Eduardo

Mon, Mar 6 2006 11:45 AMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com

Eduardo,

<< I works like I expect specially the row with *. But I've used DBSRVR as a
service, where can I put the following changes to work like an application ?
>>

The same place - there is no difference since the dbsrvr app calls the
FormCreate when running as both a service and an application.

--
Tim Young
Elevate Software
www.elevatesoft.com

Image