Search Results

0
votes

How to add a field programatically to a TAdoTable in Delphi

You can create new field using SQL. In my opinion is the best chance. If you don't want use SQL you can see this article for create new fields with ADO using ADOX (originaly in Spanish but at right …
1
vote

Why does ADO Next record processing slow down in Delphi?

Additionally, you can change the CursorType property of your Access Component (TADOTable/TADOQuery/...). Try ctOpenForwardOnly to imporve performance; It' …