Subject Hello
Author Yagi
Hello to all of IBO users,

My name is Jarek. I'm from Poland. Sometimes ago i was involved in IBO
community but had to break it down (no time and condition).
But now i'm back and want to take part in your job.
Right now i have started a project which i hope will turn to be profitable
and allow me to be a registered user of IBO (Thanks Jason for your trustware
licence :-)). I have Builder C++ 5 Proffesional 4.

OK, this was presentation, now concretes.

I'm going to translate IB_Constants.pas to Polish language. Maybe any of
colleague from Poland on this list (are there any?) do something about it.
If so, i would like to know. If not, maybe somebody will help me to check
the translation.

And I have one problem (not connected with IBO but please, help me).
I have stored procedure:

for IB 5.6

CREATE PROCEDURE (
date DATE, /*only date part*/
time DATE /*only time part*/
)
AS
DECLARE VARIABLE date_time DATE; /*this variable ought to hold date and
time*/
BEGIN
.
.
.
date_time = date + time; ----ERROR---- /*well this is not supported in IB
5.6*/
/*question is: how to add 'date' and 'time' and get 'date_time' value
holding this*/
.
.
.
END


for IB 6.0

CREATE PROCEDURE (
date DATE, /*only date part*/
time TIME /*only time part*/
)
AS
DECLARE VARIABLE date_time TIMESTAMP; /*this variable ought to hold date and
time*/
BEGIN
.
.
.
date_time = date + time; /*is this supported in IB 6.0 ?*/
/*if not, question is: how to add 'date' and 'time' and get 'date_time'
value holding this in IB 6.0*/
.
.
.
END


Best Regards
Jaroslaw Gilewski (Yagi)