I use memtable for client displaying and editing. after user making any change on records in memtable (tjrough datasource and dbgrid etc.), how can i get the...
Hi, i am trying to replace ClientDataSet component with kbmMemTable. I'd like to know if there is an equivalent of the property PacketRecords in kbmMemTable ? ...
Thanks, I've tested this property "LoadLimit". Is It possible after getting the x firsts records, to get the rest ? Christophe ROZEC TiteLive Hi, Check the...
Christophe, Then you can use CopyRecords. It take a source and destiantion tdataset and a count value. CopyRecords start from current location in source. -- ...
Look at the TkbmCustomDeltaHandler class you have to override procedure InsertRecord(var Retry:boolean; var State:TUpdateStatus); override; procedure...
Neven, Already a long time I want to make a FAQ article for this issue. However I myself did no ever used that functionality. Do you have the time to make a...
Wilfred I would be happy to, I have one small problem, I've misplaced my copy of the MemTable help file which I had when I first started using MemTable, so I'm...
Dave, Did you include the path into your search path ? Did you first compile the runtime package ? -- rgds, Wilfried http://www.mestdagh.biz On 11.03.03 22:26...
Hi All I have a master-detail relationship and on the master I have an attached table (extra cursor). If the detail table is in edit mode and I insert a new...
Benny, ... Detail is filtered according the the reference field on the master. If you insert a record in master his recordNo change so detail has no ref...
... If you insert a record in master ... I insert in an attached table, not the direct master! ... master record where you wants to ... Not possible. Edit is...
I know it's only a warning, but is there a way of fixing the code to prevent the following compiler message: [Warning] kbmMemTable.pas(8607): Return value of...
i'm concerned regarding the amount of memory my application uses, it goes as high up as 50MB. Would it be possible for the kbmMemTable to optionally cache the...
Hi Tom, I have downloaded your TBatchOperation component and used it in my project. It works fine, and does transfer the data from any type of TDataset to any...
... Whell I tryed to be smart and just started to work on that... but I cannot find the reason after 10 minute ;-( If you set Result to nil or whatever in...
... Did you try to set the property Performance to medium or small ??? Probably you have many large fields with only little data in it. -- rgds, Wilfried ...
I haven't tried setting the performance to medium or small. (will definitely try it) I would agree that there a lot of fields on the table as warrented by ...
Apparently you're the one who is stupid. This is a technical forum, not a political one. ... From: Monir-scs To: mnrsbgh@... Sent: Sunday, March 23,...
Hi, For speed reasons, I am looking into using a memtable instead of a SQL database. I am currently using Delphi 5 with MSSQL, and it is too slow. I tried...
Beth It will except that of course memtable is an ISAM and has no SQL functionality it supports filters (column = value) cf simple restriction clauses If you...
Beth, ... This would normally be correct, except that there is a very good solution just for this sort of thing. http://www.sigmap.com/txquery.htm It is a very...
This is the program that shows the bug: memtable.open while not finished do begin memtable.Insert; ... fill fields ... memtable.Post . if ... then finished :=...
Hi, Thanks for the tip. I checked the website but couldn't find the answer to the following: do you know if I can use the TXQuery to be my database (like a...
... TXQuery is not a 'database' per se. It enables you to 'SQL'ize any TDataset derivative. Short answer: It is the latter. I find it to be a better form of...
... OK - that's what I thought. What I am looking for in an SQL example is how to use the MemTable as an engine and a TQuery of some kind to SQL-manipulate...