Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Forms - Creating a Time Sequence

Status
Not open for further replies.

thebull1

Programmer
Oct 24, 2001
68
Hi all,
I am trying to initialize a tabular form with a time sequence on a given column eg
RTime
--------------------
12/12/2001 00:30:00
12/12/2001 01:00:00
12/12/2001 01:30:00
12/12/2001 02:00:00
12/12/2001 02:30:00

How should I go about creating a loop that will give me as much?
Thanks in advance.
 
TRY TO USE THE CREATION OF A TIMER

DECLARE
SECOND_TIMER TIMER;
ONE_SECOND NUMBER(7):=10000;
BEGIN
SECOND_TIMER:= CREATE_TIMER('CONTA_SEC',ONE_SECOND,REPEAT);
END;

IN THE TRIGGER "WHEN NEW_TIME_EXPIRED" ADD THE INSERT INTO YOUR TABLE OF THE SYSDATE.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top