update db

L

Licass

hi
i have this page where the user return after pay , that receives values that
i store in variables. i would like to store this variables in a table in my
db. how to write that code.
 
M

MD Websunlimited

Hi Licass,

The question is to generic but asking for a soluation specific response.
 
L

Licass

this is the error code
Microsoft JET Database Engine error '80040e10'

No value given for one or more required parameters.

/retorna_pay.asp, line 185

and this the code
mySQL= "UPDATE prereserva SET situacao=leo WHERE n_prereserva=331 "
 
S

Stefan B Rusynko

See http://www.w3schools.com/ado/ado_update.asp
Missing delimiters
mySQL= "UPDATE prereserva SET situacao='leo' WHERE n_prereserva='331'"

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


| this is the error code
| Microsoft JET Database Engine error '80040e10'
|
| No value given for one or more required parameters.
|
| /retorna_pay.asp, line 185
|
| and this the code
| mySQL= "UPDATE prereserva SET situacao=leo WHERE n_prereserva=331 "
|
|
| "MD Websunlimited" <[email protected]> escreveu na mensagem
| | > Hi Licass,
| >
| > The question is to generic but asking for a soluation specific response.
| >
| > --
| > Mike -- FrontPage MVP '97 - '02
| > http://www.websunlimited.com
| > FrontPage Add-in
| >
| >
| | > > hi
| > > i have this page where the user return after pay , that receives values
| that
| > > i store in variables. i would like to store this variables in a table in
| my
| > > db. how to write that code.
| > >
| > >
| > >
| > >
| >
| >
|
|
 
L

Licass

it return the error
Microsoft JET Database Engine error '80040e07'

Data type mismatch in criteria expression.

/retorna_pay.asp, line 185
 
M

MD Websunlimited

Is the column n_persevere an int or char? If int don't use '331'

--
Mike -- FrontPage MVP '97 - '02
http://www.websunlimited.com
FrontPage Add-in


Licass said:
it return the error
Microsoft JET Database Engine error '80040e07'

Data type mismatch in criteria expression.

/retorna_pay.asp, line 185



Stefan B Rusynko said:
See http://www.w3schools.com/ado/ado_update.asp
Missing delimiters
mySQL= "UPDATE prereserva SET situacao='leo' WHERE n_prereserva='331'"

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


| this is the error code
| Microsoft JET Database Engine error '80040e10'
|
| No value given for one or more required parameters.
|
| /retorna_pay.asp, line 185
|
| and this the code
| mySQL= "UPDATE prereserva SET situacao=leo WHERE n_prereserva=331 "
|
|
| "MD Websunlimited" <[email protected]> escreveu na mensagem
| | > Hi Licass,
| >
| > The question is to generic but asking for a soluation specific response.
| >
| > --
| > Mike -- FrontPage MVP '97 - '02
| > http://www.websunlimited.com
| > FrontPage Add-in
| >
| >
| | > > hi
| > > i have this page where the user return after pay , that receives values
| that
| > > i store in variables. i would like to store this variables in a table in
| my
| > > db. how to write that code.
| > >
| > >
| > >
| > >
| >
| >
|
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top