date [message #304450] |
Wed, 05 March 2008 04:22 |
varosh81
Messages: 178 Registered: February 2008 Location: CHENNAI
|
Senior Member |
|
|
i want to display date in dd mm yyyy format in three textboxes.
i choose day mm yyyy indvidualy but store inthe database single.
anybody knows the solution send immediately.
|
|
|
|
Re: date [message #304457 is a reply to message #304450] |
Wed, 05 March 2008 05:14 |
|
azamkhan
Messages: 557 Registered: August 2005
|
Senior Member |
|
|
Dear I think that you have to do this
first assign your split date in to a variable
DECLARE
v_date DATE;
BEGIN
v_date := TO_DATE (Block.v_day||Block.v_mon||Block.v_year, 'DDMONYYYY');
END;
Then use this v_date in your insert.
Regards,
Azam Khan
|
|
|