how to overwrite a value in data base.
I have stored a value into database.now i want to overwrite that value with another value.how to do that?
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
I have stored a value into database.now i want to overwrite that value with another value.how to do that?
Hi Navya,
You can open a database, open a collection and change it manually. Or do you want to do this programmatically?
No.
I dont want to do it manually.
My requirement is..
In my application i want to save a message which entered in text area,that message is stored in data base.i want to update that message when i retype in the same Text area box.
for eg: i have entered "navya" in text area when i click on save button that text saved in database.again i am entered in that text area as "ncpl" in data base ncpl has to store..
for this i have used read,update services.when i test those services erroe coming like:
Test failed! Please check service properties and the error details in "Response" area.
what should i do?
Navya,
Take a look at here please: http://docs.appery.io/documentation/b...
Thank you so much.
I am able to update and read only one object at a time. i want to update multiple objects at a time. how do i create service to pass more parameters ?.
Navya,
This is only possible for queries with general criteria, using the parameter where:
http://docs.appery.io/documentation/b...
Hi There,
Thanks for helping !
But my requirment is to run update query for 2 rows. Asume i have 2 rows with ids 1,2 then i need to update those 2 rows with new date. Please guid me to complete this action.
Navya,
You can update data for one record only. If you need to update data for two records, you should do it one by one for each record.
If we have two text boxes and one save button how can we save these two text boxes values in database table on one button click?