java script

P

ptpgdca

hi,
actually i am having a problem with the javascript.
i have written a javascript in which i have to display the result
accoding to the query which is SELECT * FROM SHIFTCHANGE WHERE
PSNO=P_D;

AFTER THE RESULT IS DISPLAYED i have to delete the displayed the result
using the checkbox. The problem is how it should be deleted from the
database.the checkbox that is clicked for the deletion that data should
be deleted from the database.

i m inputing p_d,starting date,month,year, finishing date,month, year.
can anyone help

ptpgdca
 
S

Stefan B Rusynko

You can not use JavaScript (client side scripting) to manage (delete) anything from a DB (which requires server side scripting)
If you are using wizards ( and not hand coding your server side scripting) take a look at the Database Interface Wizard




| hi,
| actually i am having a problem with the javascript.
| i have written a javascript in which i have to display the result
| accoding to the query which is SELECT * FROM SHIFTCHANGE WHERE
| PSNO=P_D;
|
| AFTER THE RESULT IS DISPLAYED i have to delete the displayed the result
| using the checkbox. The problem is how it should be deleted from the
| database.the checkbox that is clicked for the deletion that data should
| be deleted from the database.
|
| i m inputing p_d,starting date,month,year, finishing date,month, year.
| can anyone help
|
| ptpgdca
|
 
Top