Focal Point
[SOLVED] Inserting data in focus db

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/705104494

July 24, 2010, 09:03 AM
pink
[SOLVED] Inserting data in focus db
HI,
I am inserting the data in focus db uisng MODIFY procedure in my application . Data is inserting properly focus db , but not able see inserting data in my application with out cosing seesion . if close the session(application) and then only able to see inserted data.

I used SET COMMIT=ON, even though not able to see.I inserted data like below command


SET COMMIT =OFF
-RUN
MODIFY FILE EMP
MATCH EMPID
-------
-------
----------
DATA
--------
---------
--------,$
END
-RUN
SET COMMIT =ON
-RUN

please suggest how commit db properly, i am using first time this modify procedure.

This message has been edited. Last edited by: pink,


Thanks and Regards,

WF 7611
XFOCUS/FOCUS DB
Win XP
EXL2K/HTML
July 24, 2010, 11:16 AM
Dan Satchell
You should not SET COMMIT OFF before running your MODIFY procedure - if anything SET it ON. WebFOCUS should automatically issue a COMMIT at the end of the MODIFY process.

SET COMMIT = ON
-RUN
-*
MODIFY FILE EMP
MATCH EMPID 
-------
-------
----------
DATA 
--------
---------
--------,$
END
-RUN 



WebFOCUS 7.7.05
July 25, 2010, 11:00 AM
Francis Mariani
MODIFY FILE CAR
FIXFORM COUNTRY/10
MATCH COUNTRY
ON NOMATCH INCLUDE
ON MATCH   GOTO TOP
DATA
INDIA
END
-RUN

TABLE FILE CAR
PRINT
COUNTRY
END
-RUN

COUNTRY 
-------
ENGLAND 
JAPAN 
ITALY 
W GERMANY 
FRANCE 
INDIA 



Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
July 26, 2010, 08:54 AM
jgelona
I suggest getting a copy of the WebFOCUS Modify manual and make it your friend.

WebFOCUS Modify Reference


In FOCUS since 1985. Prod WF 8.0.08 (z90/Suse Linux) DB (Oracle 11g), Self Serv, Report Caster, WebServer Intel/Linux.
July 30, 2010, 09:11 AM
pink
Thanx Dan n Francis Smiler
Thanx jgelona for ur suggestion, i already have that manual Smiler , but due to some other issue I was confused


Thanks and Regards,

WF 7611
XFOCUS/FOCUS DB
Win XP
EXL2K/HTML