Jean-François ROY
|
| Posted: 02/23/2004, 9:35 AM |
|
Hi,
I get this message and I don't know how to resolve it.
One or more parameters missing to perform the Update/Delete. The application
is misconfigured.
Thanks,
Jean-François
|
|
|
 |
DonB
|
| Posted: 02/23/2004, 12:01 PM |
|
Since it says update and delete, I suspect this to be the primary key not
supplied in the WHERE part of the Data Source, although that usually won't
generate an error message - just affect all the rows of the table instead of
the one you wanted to affect. Usually, though, this is because you have
misspelled the name of a database column (did you change the table or
change it to a different table?)
If you look as the PHP file, the Insert and Delete methods will show you the
queries and where they get their values to construct the query. SOmetimes
it's best to add a Before Insert (or Delete) event and have it output the
completed query so you can see what actually executes. You could event
paste that into another tool and execute it that way to see what it does.
--
DonB
http://www.gotodon.com/ccbth
"Jean-François ROY" <jfroy@wanadoo.fr> wrote in message
news:c1ddk8$p5o$1@news.codecharge.com...
> Hi,
>
> I get this message and I don't know how to resolve it.
>
> One or more parameters missing to perform the Update/Delete. The
application
> is misconfigured.
>
> Thanks,
>
> Jean-François
>
>
|
|
|
 |
|