Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> unimplemented or unreasonable conversion error

unimplemented or unreasonable conversion error

From: Thomas Rieffel <thomasr_at_fun.de>
Date: Fri, 23 Apr 1999 07:48:28 +0200
Message-ID: <372009AC.84EF9FA6@fun.de>



Hello,

we are running serveral Oracle 8.0.5 on Linux and Solaris and I´ve
written an Application using Pro C. On one Server on Solaris I get the
following Error:

ORA-01460: unimplemented or unreasonable conversion requested

If I start the application using the other servers (on Solaris or on
Linux) I don´t get this error. So I think, there might be something
wrong with the installation. Does anybody know, what is wrong.

The error occurs on serveral queries in the source, for expample here.

int
dbh_perm_appperm(char *appid,unsigned long *appsecret)
{
  unsigned long asec=0;
  short dmy;
  char app_id[10];
  char test[100];

  *appsecret=0;

  EXEC SQL SELECT asec INTO :asec:dmy FROM permappsec WHERE appi=:appid;

  if(sqlca.sqlcode!=0) return 1;
  *appsecret=asec;
  return 0;
}

The table definition is.

create table permappsec(
  appi varchar2(4),
  asec integer
);

Thanks

Thomas
 
 
  Received on Fri Apr 23 1999 - 00:48:28 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US