Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
6answers
268 views

Loading millions of records into a stringlist can be very slow

how can i load millions of records from tadotable into a stringlist very fast? procedure TForm1.SlowLoadingIntoStringList(StringList: TStringList); begin StringList.Clear; with SourceTable do ...
3
votes
2answers
191 views

Reversing the Master-Detail connection in Delphi

I have 2 tables which are connected using master-detail connection. I need the connection reversed on creation of Form2 - so the master table becomes the detail table, and the detail table becomes the ...
2
votes
1answer
97 views

TADOTable — is it OK to use for inserts?

I'm working in an old Delphi 7 project and trying to get my bearings in it. I had heard that TADOTables are bad because they pull down entire tables. However I am looking at one bit of code and I'm ...
2
votes
1answer
259 views

TADOTable, Seek and clUseServer how to combine?

Is it possible to use the seek function when the cursor location is set to clUseServer in Delphi's ADOTable? I know that it is possible to use locate function instead but it is a lot slower than the ...
1
vote
2answers
150 views

Class TADOConnection / TADOTable Not Found

Okay, so my application was working just fine until I decided to clean up the design-time form a bit by creating a DataModule form and moving all database components to it. I'm using Delphi XE2 ...
1
vote
1answer
154 views

ADOTable.Locate in Master-Detail Relationship

I have a Master-Detail Relationship between two Tables , I Select a Record in Master Table and its Details shows in Detail Table , next i want to Locate in Detail Table Only in Details about Master ...
1
vote
1answer
96 views

Problem with checking ADOTable field values

I'm having yet another problem with Delphi. I wrote a piece of code that should check if a field in a database table equals to 0, and if that is true, changes font color and caption of a certain ...
1
vote
1answer
241 views

How can I load column names from an Access table into a variable (I'm not sure which one to use)? I'm using an ADOTable in Delphi7

I'm trying to import the column names from an MS Access Table (named Learners) to some variable (not sure which one to use). The column's names are dates. When btnSave (TButton) is clicked the code ...
1
vote
1answer
401 views

Delphi: TAdoTable.Insert not really an Insert?

I have two ADO Tables linked as master/details tables, tblCategory (master) and tblItems (details). Both tables have its own grid, and displayed in the same form. I also have data aware controls ...
0
votes
1answer
1k views

How Can I Sort an ADO Table on a Fieldname Containing a Space?

I am using Delphi, but this is a simple and general problem: I'm doing the following: var ArticlesTable: TADOTable; begin ArticlesTable.DisableControls; ArticlesTable.Sort := 'CITY'; ...
-1
votes
2answers
395 views

insert to a diffrent table onNewRecord

got an ADOQuery that has OnNewRecord event. on the procedure i try to add data automaticaly to another table. the data is a few rows that are needed and handled in clientDataSet in case of ...