View Single Post
  #1 (permalink)  
Old 02-05-04, 20:27
renniebeach renniebeach is offline
Registered User
 
Join Date: Feb 2004
Posts: 2
ASP and ADABAS D

I am trying to call a Stored proc using Microsoft ADO and the ADABAS ODBC driver.

But any call to any stored proc always returns the same
"Microsoft OLE DB Provider for ODBC Drivers" Error.

"[SOFTWARE AG][SQLOD32 DLL][ADABAS]Insert value list does not match column list;-1200 TOO FEW VALUES."

The Stored Proc is a simple test

---------------------------------------------
DBPROC ASP.maxentity (
OUT retVal FIXED(9));
/*
SQL (SELECT MAX(entity) into :retVal from "DBASYS"."ENTITY" );
-------------------------------------------------------------------------------

Any ideas on what is going on, or how to get around this would be greatly appreciated
Reply With Quote