Recent content by bmayfield

  1. B

    copy row from one table to another

    Is there a way to export a row from one table (production) and import it to another table (development). The need is for regression testing. I don't think the copy function is supported as it is in Oracle SQL*PLUS Release 8.0.6. This is what we need to do: 1 copy from wcc/prodpsw@prod - 2...
  2. B

    doa40d2006 and Oracle 11gR2 compatibility

    We searched the forum and did not find exactly what we are looking for. We are planning a migration from Oracle 10gR2 to 11gR2. We should not have to get a new verion of DOA correct? We should not have to re-compile anything either correct? Your confirmation would be greatly appreciated for...
  3. B

    nbpost and commit

    Thanks. Bruce
  4. B

    nbpost and commit

    It has been awhile, DOA has just been running fine. We think we have a problem where we update a column with a value of N to Y in a dbgrid and we click a save button. The code behind the save button is as follows: procedure TFRIQ0024frm.btnSaveClick(Sender: TObject); begin if (not...
  5. B

    doa41d2009 installed but we get required package 'doa41d2006' not found

    All requires have been updated. We have 4 packages in this exe. We do a view source on each BPL and the exe to verify that doa41d2009 is present in every requires. CodeGear changed the way you set the output paths from Delphi 2007 in the IDE. Using project - options - Delphi complier, we set...
  6. B

    doa41d2009 installed but we get required package 'doa41d2006' not found

    We have tried codegear support but we are not getting very far. We are trying to migrate a Delphi 2007 application to Delphi 2009. We installed (we think we installed correctly) doa41d2009 and replaced all references of doa412006 with doa412009. When we compile we get a Fatal error E2202...
  7. B

    Cannot load package 'doa40d2006 msg

    All we do is copy the DOA components and drop them on a form, update the uses clause and the dcp shows up in the requires list. We don't do anything custom as it is all standard out of the box coding. Thank you for responding Marco.
  8. B

    Cannot load package 'doa40d2006 msg

    D7 and D2006 work together because our path points to one folder that contains library components rtl70.bpl and rtl100.bpl as well as doa40d7.bpl and doa40d2006.bpl. We can load a package that requires either doa40d7.bpl and doa40d2006.bpl and do not get the message. We created a D2006 app...
  9. B

    Cannot load package 'doa40d2006 msg

    We have Delphi 2006 and Rad Studio 2007. We have a group of applications compiled using doa40d2006 and we compiled and new application using Rad Studio 2007. The applications share the same library path to the bpls. We copied doa41d2006 into the same libary as doa40d2006 so apps could co-exist...
  10. B

    AfterScroll access violation

    Just to follow up on this we can execute code in the afterscroll event if it is in a try/except block with no exception handler. This makes no sense that it would work with try/except and get access violations without try/except. The final resolution to the problem was to create sql statements...
  11. B

    AfterScroll access violation

    procedure TCMPA0017frm.odsDol_EmployersAfterScroll(DataSet: TDataSet); begin if CMPA0017frm.odsDol_Employers.QBEMode = False then fillOrgTypeCdDesc; end; procedure fillOrgTypeCdDesc; var holdchar : AnsiString; begin holdchar := CMPA0017frm.dbeOrgTypeCdPvtMr.Field.Value; if not...
  12. B

    AfterScroll access violation

    Our mistake, we still do not see a event that will fire where the next record data is available for us to plug into a query that won't get access violations in the afterScroll event. Here is the sequence of events. Before the form displays afterscroll fires with dataset state = browsing. Form...
  13. B

    AfterScroll access violation

    The afterscroll event only fires when query enter or query execute methods are invoked and not if the navigator bar or dbgrid record indicator is moved by clicking on the next row in the grid itself. OnClick fires when next or previous buttons are depressed but is not related to the actions...
  14. B

    AfterScroll access violation

    We are DOA2006 and Delphi 2006. We have a need to perform a TOracleQuery after the user switches from one record in the dbgrid to another. The user is using the down arrow or clicking on the navigator bar to switch records. We get a access violation in the AfterScroll event to fill some tEdit...
  15. B

    Evaluation Version Needs Delphi error msg

    Do you know if RAD2007 works DOA2006 4.0? Regards, Bruce
Back
Top