Skip to content Skip to sidebar Skip to footer

Column ( ) Not Found In Any Table In The Query (or Slv Is Undefined). Sqlcode=-217

I am reading a table from like this: query = ( 'select mandant,posnr,systemdat, 'lieferbedingung,loeschhafen,bereich,' 'nrkreis_nr from eakopf_t where posnr[10,10] = \' \' and pos

Solution 1:

Kind of a guess because I can't see your database, but this line:

posnr[10,10] = " "

is suspect to me. At least in Postgres, double quotes indicate column names, which would give you an error like this. I would suggest replacing any double quotes intended to represent strings with single quotes and try again. ie)

posnr[10,10] = ' '

Post a Comment for "Column ( ) Not Found In Any Table In The Query (or Slv Is Undefined). Sqlcode=-217"