Board index » delphi » Use data-aware grids for transaction processing???
Tim Rand
![]() Delphi Developer |
Mon, 10 May 1999 03:00:00 GMT
|
Tim Rand
![]() Delphi Developer |
Mon, 10 May 1999 03:00:00 GMT
Use data-aware grids for transaction processing???In my current project we're using InfoPower's data-aware controls. This appears to be an inherent drawback to using data-aware components. Any recommendations for components to use for transaction processing? TimR...@ix.netcom.com P.S. Please respond via email, or email AND news. |
Christian Ka
![]() Delphi Developer |
Fri, 14 May 1999 03:00:00 GMT
Re:Use data-aware grids for transaction processing???If you're using Delphi 2 you can use cached updates and explicit SL Christian Quote>In my current project we're using InfoPower's data-aware controls. Quote>Softwareentwicklung u. -beratung |
Ryan VanIderstin
![]() Delphi Developer |
Sat, 15 May 1999 03:00:00 GMT
Re:Use data-aware grids for transaction processing???Tim Rand <TimR...@ix.netcom.com> wrote in article Quote> In my current project we're using InfoPower's data-aware controls. performance. Use local tables for editing and then update the records that need to be updated. The alternative is to used cached updates. This achieves the same Ryan VanIderstine |
William Hun
![]() Delphi Developer |
Sun, 16 May 1999 03:00:00 GMT
Re:Use data-aware grids for transaction processing???Quote> Tim Rand <TimR...@ix.netcom.com> wrote database access. There is a central assumption that you are editing at most one row of a table. So when you move to a different row, you must be finished editing the old row. The client tool must discard your updates or post them to the underlying table. The right model would allow a client side application to edit an entire Cached updates and transaction control can fake the correct behavior to The odd thing is that these considerations occur to programmers coding Bill Hunt |
claysie..
![]() Delphi Developer |
Tue, 18 May 1999 03:00:00 GMT
Re:Use data-aware grids for transaction processing???We are thinking about the following and would like any comments/input 1. Use NON-data-aware controls when users edit and insert records. 2. Prior to and following this "virtual" editing/inserting, check table's Clay Shannon __________________________________________________ |
Jan Kempenaer
![]() Delphi Developer |
Tue, 18 May 1999 03:00:00 GMT
Re:Use data-aware grids for transaction processing???Quoteclaysie...@aol.com wrote: - (database)transactions : starttransaction - commit/rollback - in combination with 'optimistic locking' the scenario is as follows : The advantage is that you can always use data-aware controls, and never have to do Of course, not all databases support transactions is the same way. All database servers do We're using this approach on an Access database. Jan Kempenaers |
William Hun
![]() Delphi Developer |
Sat, 22 May 1999 03:00:00 GMT
Re:Use data-aware grids for transaction processing???Quote> You shold look into the use of 1. Delphi doesn't provide optimistic locking for some formats (Paradox 2. The transaction has to be started when the record is displayed. If 3. You don't want other users to see any results from the user's edits There are 3 other alternatives to the timestamp: Bill Hunt |
1. Transaction Processing w/ Data Aware controls???
2. Accessing Database data from DrawCell Method of NON data aware string grid
3. data-aware controls w/non data-aware
4. Question about transactions and data-aware components
5. Transactions and Data Aware controls
6. Data Aware Controls and Transactions problem