Hi, One of the changes between v. 2.xx and v. 3.xx is that the CSV and Binary file format has been removed from the base component and instead is now supported...
Hi Kim, Thanks, I managed to figure out what the new components kbmBinaryStreamFormat does. I like it better, very nice. I had trouble with the field ...
Did you get an A/V? Some people have reported problems with CB6. It contain a bug which sometimes (but curiously not always) affect LoadFromDataset. Remove the...
Hi Kim, I remove the 'virtual' keyword from LoadFromDataset in the kbmMemTable.pas file. The following now works. Thanks. TkbmMemTableCopyTableOptions opt; ...
Hi guys... A friend of mine who told me about kbmMemTable, also told me it's 100% thread-safe. The thing he couldn't tell me is how to have many threads...
I am using the KBMMemtable and Developer Express's Inspector suite in order to get the advantage of DBAware Controls but isolate them from the actual DB. It...
Hi, Make sure the blob field is the last field in the field list. If not, there is a known bug in kbmMemTable which will be triggered. best regards Kim Madsen ...
Any other solutions? Because I need to set the standalone to true. (I need tables attach to it) This has been drive me crazy! ... right? But ... sometimes top,...
Hi How would you get the filter string on a filtered index. I have tried to use, IndexByName to return the index structure, there are properties for the...
Hi, I cant understand why setting Standalone to true would change anything in your setup. All it does is it doesnt lock the table for exclusive use during...
Hi, You cant. The filterexpression is immediately compiled into a filter expression tree which is the one stored with the index. best regards Kim Madsen ...
Hi, Yes, kbmMemTable is 100% threadsafe. There are several ways to access the memory table from several threads: 1) Have a base kbmMemTable containing data....
... De: Kim Madsen [mailto:kbm@...] Enviada: quarta-feira, 12 de Fevereiro de 2003 17:31 Para: memtable@yahoogroups.com Assunto: Re: [memtable] Re:...
Lemos
rds01306@...
Feb 12, 2003 6:08 pm
5121
Kim, thank you for the reply :) Well, I think number 1 is the right choice for me. Actualy, I've tried this one using the AttachTo property of the child...
Hi, Yes its the correct way to do it. But bare in mind that if the base table is open at the attach time, you need to specify the MaxAttachCount on the base...
Ok Kim... I'll try this tonight and let you know. Thanks for your help!! :) Roger. ... __________________________________________________ Do you Yahoo!? Yahoo!...
Hello, I have generated a memtable on the fly using the following code. I am not sure whether there is a problem with memTables or whether the problem is...
Hello! Could you tell me can I read the file (that was saved with TkbmMemTable's SaveToBinaryFile method) if I don't know the list of field definitions for the...
Hi, You can only load the file if the field definitions are part of the file (mtsfDefs specified during saving the file). Otherwise you will have to start to...
Kim, it worked so nicely I can't believe!!! :) The problem was I was not creating an identical table structure on both sides (main thread and children). I...
Hi, I just glanced the code for a moment and noticed that you are setting AttachedMaxCount to 1000 which means that 1000 other memtables can attach to the main...