I'm getting $FF from another PHP-Page
and then I want to insert the Values into my Database like this
$handle = ora_logon("iusr@test","kiwi1");
$cursor1 = ora_open($handle);
$query = "insert into internet_tmp select
rv_ret($FF),$FF,$sesid,(sysdate+0.0021) from dual";
ora_parse($cursor1,$query) o
I want to insert the Values into my Database like this
$handle = ora_logon("iusr@test","kiwi1");
$cursor1 = ora_open($handle);
$query = "insert into internet_tmp select
rv_ret($FF),$FF,$sesid,(sysdate+0.0021) from dual";
ora_parse($cursor1,$query) or die;
ora_exec($cursor1);
ora_close($cursor1);
thx very much
oracle statments don't need " but ' and it did exaktly what it should
At 01:30 20.03.2001 +0100, you wrote:
>On Tue, 20 Mar 2001, David Robley wrote:
>
> > On Tue, 20 Mar 2001 03:32, Rudolf Frint wrote:
> >
> > > > I want to
3 matches
Mail list logo