PL/SQL and Oracle

BaseballSTUD

Member
Jan 28, 2003
131
0
0
Opps!...I was wondering if anyone is familiar with PL/SQL and Oracle and could help me with a problem i am having
 

TommyVercetti

Diamond Member
Jan 4, 2003
7,623
1
0
Rule #1 of posting, Post in the right forum
Rule #2 of posting, Post the problem along with the question.
 

BaseballSTUD

Member
Jan 28, 2003
131
0
0
Originally posted by: TommyVercetti
Rule #1 of posting, Post in the right forum
Rule #2 of posting, Post the problem along with the question.

SOrry figured this was the best forum to post in.

The problem i am having is populating a tlist on a serprate form.

here is the code i have:
DECLARE
group_id RecordGroup;
list_id Item := Find_Item('LOC_BLOCK.SELECT_CITY_TLIST');
status NUMBER;
errcode NUMBER;
TEMP_PUDATE VARCHAR(20);
TEMP_RTDATE VARCHAR(20);


BEGIN
:GLOBAL.PROJECT_PATH := 'F:\DATABASE_MGMT\';

TEMP_PUDATE := :TIME_PLACE_BLOCK.PICKUP_DAY || :TIME_PLACE_BLOCK.PICKUP_MONTH;
:GLOBAL.PUDATE := TO_DATE(TEMP_PUDATE);

TEMP_RTDATE := :TIME_PLACE_BLOCK.RETURN_DAY || :TIME_PLACE_BLOCK.RETURN_MONTH;
:GLOBAL.RTDATE := TO_DATE(TEMP_RTDATE);

:GLOBAL.PUTIME := :TIME_PLACE_BLOCK.PICKUP_HOUR || :TIME_PLACE_BLOCK.PICKUP_MIN;
:GLOBAL.RTTIME := :TIME_PLACE_BLOCK.RETURN_HOUR || :TIME_PLACE_BLOCK.RETURN_MIN;

group_id :=
Create_Group_From_Query('City_Group',
'SELECT Branch.BrchCity, Branch.BrchCity FROM Branch');

status := Populate_Group('City_Group');

Populate_List(list_id, group_id);

IF :TIME_PLACE_BLOCK.AIR_CODE = '12345' THEN
CALL_FORM:)GLOBAL.PROJECT_PATH || 'RATES_DISCOUNTS_FRM', HIDE, DO_REPLACE);
ELSE
CALL_FORM:)GLOBAL.PROJECT_PATH || 'LOC_FRM', HIDE, DO_REPLACE);
END IF;

END;
 

StormRider

Diamond Member
Mar 12, 2000
8,324
2
0
Just out of curiosity, what is the job market for PL/SQL programmers? The place where I work at uses this a lot and I'm probably gonna have to learn it -- but I would rather be a Java programmer.
 

tkdkid

Senior member
Oct 13, 2000
956
0
0
Ok, well since you're being so general and vague, I'll do the same.

To fix the problem, you need to find the error in your code and then fix it so that it works right.
 

Ameesh

Lifer
Apr 3, 2001
23,686
1
0
Originally posted by: tkdkid
Ok, well since you're being so general and vague, I'll do the same.

To fix the problem, you need to find the error in your code and then fix it so that it works right.

hahaha
 

Apathetic

Platinum Member
Dec 23, 2002
2,587
6
81
Originally posted by: StormRider
Just out of curiosity, what is the job market for PL/SQL programmers? The place where I work at uses this a lot and I'm probably gonna have to learn it -- but I would rather be a Java programmer.


I'm a programmer and I use a bunch of SQL at work. I don't know anyone who ONLY does SQL. It's definately something you need to know, but it's usually just one small part of an application - don't limit yourself to being a SQL only guy. Learn Java and SQL.

Dave