I've downloaded a copy of kbmMemTable, and it said that I needed to register as a member of this group in order to get the password. But I have registered,...
Hello How can I add a new field to a table without lossing/destroying all the data in the other fields? Regards, Andre Brandao [Non-text portions of this...
Hi, Copy the data to another memtable. Eg: cpmt.LoadFromDataset(oldmt,[mtcpoStructure]); oldmt.Close; oldmt.FieldDefs.Add(...); oldmt.CreateTable; oldmt.Open; ...
I've got a situation where the FindKey won't work. I've added a simple index: TempTbl.AddIndex('FF$PRIMARY','Student Name;Student ID;Module Name;Module...
I've changed my copy of Lzh.pas to eliminate compiler warnings generated by Delphi 5. Please see my changes below. Any chance including them in the main source...
Hi, Can you put together a _small_ sample (source only - no other 3rd party components) and send it to me. Then Ill have a look. best regards Kim Madsen ...
Hi! I have problem with filtering by TTime fields. kbmMemTable v. 3.00f9 Beta. If I use same code with BDE table all ok. I can send example. ... Dmitry...
Hi, I'm having a huge performance issue when I try to save my memtable to a paradox table that's on a shared drive on the network. When I use the method...
Yes, use an application server on the side where you have the paradox table. The problem is that paradox has to update the physical database files and indexes...
My guess is you've just discovered the wonders of the low-bandwidth, high-latency LAN. I've never encountered a simple solution for this, but there are a...
Hi Kim. I want to ask you about one functionality. We want to append an record, retrieve his AutoINC ID, and edit it. On the indexed tabe. Is there an function...
2 ways: 1. try to lock the paradox table exclusivly, so there must not be a lock applied for each row to be inserted 2. save the paradox table locally on your...
Hi, I'm having a huge performance issue when I try to save my memtable to a paradox table that's on a shared drive on the network. When I use the method...
I've had some big problems with getting FindKey to work. I had a situation a few days ago that I finally got working by adding my index difinitions in the...
Hi, You also must make sure the current index is set to point at your new index. After defining a new index while the table is open, its correct you should use...
Hello, I'm currently investigating the possibilities of building Unicode database applications with Delphi. I wanted to use kbmMemTable (just as I have ever...
I've been told that the kbmCSVStreamFormat component will import Delimited ASCII files, but I can't find documentation for it anywhere. I have purchased the...
Hi, The help file is currently only for 2.53 and does not include the new 3.00. But for many hints check SaveToStream in the help file. It accepts some...
Jesse, Drop it on a from toghetere with a memtable. Set MemTable.DefaultStreamFormat to the CSV stream format. Set the properties for delimiters. Check...
Hi, Unicode is not directly supported in kbmMemTable as is. I've been looking into it several times, but always ended up in removing direct support for it ...
I'm trying a MemTable.LoadFromFile, and it complains about the CommaTextFormat not being set. The file I'm trying to import is actually a Tab Delimited file....
I am trying to copy the DataSet from a TQuery operation into a kbmMemTable that has been defined. Here is the relevant code: TkbmMemTableCopyTableOptions...