Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Pro*C Problem with Oracle!
> strcpy(some_data,dbdata->data[0]);
> strcpy(some_more,dbdata->data[1]);
Is your variables for dbdate->data[0] and data[1] properly terminated with
a hex zero? STRCPY copies to the target the information in source using
hex zero in the source to determine the length. Therefore, if your source
is not properly terminated than you would get "values too large for this
column"
Received on Mon Oct 27 1997 - 00:00:00 CST
![]() |
![]() |