I am very new to C# and VFP(Visual fox pro). My first goal is to run and test a simple update query using query builder of MS visual studio. After adding a VFP database successfully(now I can preview data and execute select statements), I executed the following query and I am getting SQL Execution error where error message is: Trigger failed in Inventory.
UPDATE inventory SET location = 'test' WHERE inventoryid = 221
I dont understand what is wrong and Is there any better ways to learn and play with VFP database?
Update
Thanks to everyone. This database came up with a software. Since I was able to connect to the database and export some files after building an external app, I thought I could easily update few information too. Since now I have VFP and I dont have any source code of the whole software,
Is there any possibility that I might not find a way out to find or modify the trigger function and the stored procedure since it is part of a packaged software?
I just have the installed software and the VFP database inside it. The software talks to that VFP database.
Updated 2
I found the stored procedure in a FPT file under a different folder which is a location of an another system database. This is the code:
PROCEDURE InventoryUpdateTrigger(tcAlias,tcSource,tlHis)
IF VARTYPE(glNoTrigger) = "L"
IF glNoTrigger
RETURN .t.
ENDIF
ENDIF
IF VARTYPE(goApp) <> "O"
RETURN .f.
ENDIF
LOCAL laFieldList(1),laDataValues(1,3), laDataFields(1)
LOCAL lcCriticalFields, lnFields, lcField, llRetVal,lnItemid,lnAlias,;
lcPtNo, llBBHasChanged, lnField, lcNewVal, lcOldVal, lcSource, lnInventoryid
lnAlias = SELECT(0)
llRetVal = .t.
lcCriticalFields = "ITEMID,ITEMNUMBER,MFGR,SERIALNUMBER,"+;
"DESCRIPTION,WAREHOUSE,MACHINETYPE,QTY,UNITCOST,STATUS,RECEIVESTATUS,"+;
"FREIGHTIN,CONDITIONCODE,DATERECEIVED,BREAKDOWNINVENTORYID,"+;
"DATEALLOCATED,ALLOCATEDBY,DATEUNBOOKED,UNBOOKEDBY,LOCATION"
llBBHasChanged = .f.
BEGIN TRANSACTION
TRY
lnInventoryid = EVALUATE(tcAlias+".inventoryid")
lnItemid = EVALUATE(tcAlias+".itemid")
SELECT (tcAlias)
lnDataFields = AFIELDS(laDataFields,tcAlias)
DIMENSION laDataValues(lnDataFields,3)
FOR lnField = 1 TO lnDataFields
lcField = ALLTRIM(laDataFields(lnField,1))
lcNewVal = ALLTRIM(TRANSFORM(EVALUATE(tcAlias+"."+lcField)))
lcOldVal = ALLTRIM(TRANSFORM(OLDVAL(lcField,tcAlias)))
laDataValues(lnField,1) = lcField
laDataValues(lnField,2) = lcOldVal
laDataValues(lnField,3) = lcNewVal
IF !llBBHasChanged
IF UPPER(lcField) $ UPPER(lcCriticalFields)
IF GETFLDSTATE(lcField,tcAlias) > 1
llBBHasChanged = .t.
ENDIF
ENDIF
ENDIF
ENDFOR
IF goapp.osystem.audit_inventory
llRetVal = UpdateDatabaseAudit(IIF(tlHis,"INVENTORYHIS","INVENTORY"), lnInventoryid,;
goapp.nUserid, AUDIT_UPDATE, tcSource, @laDataFields,@laDataValues)
ENDIF
IF llRetVal
LOCAL llUpdateBrokerBin
llUpdateBrokerBin = .f.
IF llBBHasChanged
IF !tlHis
** need to update brokerbin
IF GETFLDSTATE("STATUS",tcAlias) > 1 OR GETFLDSTATE("RECEIVESTATUS",tcAlias) > 1
lcOldReceive = OLDVAL("ReceiveStatus",tcAlias)
lcNewReceive = EVALUATE(tcAlias+".ReceiveStatus")
lcOldStatus = OLDVAL("Status",tcalias)
lcNewStatus = EVALUATE(tcAlias+".Status")
lnCase = 0
DO case
CASE lcOldReceive <> STATUS_RECEIVED ;
AND lcNewReceive = STATUS_RECEIVED ;
AND lcNewStatus = STATUS_OPEN
llUpdateBrokerBin = .t.
lnCase = 1
CASE lcOldStatus = STATUS_OPEN ;
AND lcNewStatus = STATUS_ALLOCATED ;
AND lcNewReceive = STATUS_RECEIVED
llUPdateBrokerBin = .t.
lnCase = 2
CASE lcOldReceive = STATUS_RECEIVED ;
AND lcNewReceive <> STATUS_RECEIVED ;
AND lcNewStatus = STATUS_OPEN
llUpdateBrokerBin = .t.
lnCase = 3
CASE lcOldStatus = STATUS_ALLOCATED ;
AND lcNewStatus = STATUS_OPEN ;
AND lcNewReceive = STATUS_RECEIVED
llUPdateBrokerBin = .t.
lnCase = 4
CASE lcOldStatus <> STATUS_BOOKED ;
AND lcNewStatus = STATUS_BOOKED
llUpdateBrokerBin = .t.
lnCase = 5
CASE lcOldStatus = STATUS_BOOKED ;
AND lcNewStatus <> STATUS_BOOKED
llUpdateBrokerBin = .t.
lnCase = 6
ENDCASE
ELSE
lcReceive = EVALUATE(tcAlias+".ReceiveStatus")
lcStatus = EVALUATE(tcAlias+".Status")
IF lcReceive = STATUS_RECEIVED AND lcStatus = STATUS_OPEN
llUpdateBrokerBin = .t.
ENDIF
ENDIF
IF llUpdateBrokerBin
llRetVal = setbrokerbintoprocess(lnItemid,lnInventoryid,0,tcAlias,"INVENTORY","UPDATE")
ENDIF
ENDIF
ENDIF
ENDIF
CATCH TO loException
llRetVal = .f.
RecordError(loException.ErrorNo, loException.LineNo, loException.Message,loException.Procedure)
FINALLY
IF llRetVal
END TRANSACTION
ELSE
ROLLBACK
ENDIF
ENDTRY
SELECT (lnAlias)
RETURN llRetVal
ENDPROC
It leads to many questions which I think that is part of learning VFP first and it is not about simply running a SQL statement.
Do you even have VFP to work with?
If you do, run it. In the command window, type
This will bring up the database and show all the tables and whatever relationships between the tables in question. From there, right-click and popup menu will have "Stored Procedures". The code is embedded in the database container.
Also, for the specific inventory table, you can do a find within the opened database. Then right-click on it and click "Modify...". This will bring up the details about the table... Columns, sizes, indexes, and a "tab" page for the overall table showing what rules to apply and methods to call for insert, update and delete triggers.
This should get you started (provided you HAVE VFP to begin with).
FEEDBACK...
Since you have VFP9, once started, in the command window, type
CD ? [enter]
the "?" will ask you for a folder to change directory to. Pick the directory where your database is located.
Once there, then type
OPEN DATABASE ? [enter]
and it should ask which database to open... pick it.
then
MODIFY DATABASE [enter]
it will open a window showing all the tables and whatever relationships are in the database.
Right-click in the database in any open area and then click "Stored Procedures". This will bring up the code window for the stored procedures.
Now, with respect to the tables that have triggers, back in the modify database window, if you pick a table that you know has triggers (per your example), right-click on the table and modify. it will bring up a tab screen showing the fields, indexes and then table. The "Table" tab has the triggers and any rules for validation and insert/update/delete triggers.
Hopefully this will help you find your issue.