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...
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...
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...
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...
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...
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.
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...
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...
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...
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...
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...
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...
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...