Kombinált nézet Egyszerű nézet Fa-nézet
Szálak [ Előző | Következő ]
toggle
mukesh kumar
how to check the duplicate value insertion by the server side
2012. szeptember 17. 3:41
Válasz

mukesh kumar

Rangsorolás: Junior Member

Hozzászólások: 38

Csatlakozás dátuma: 2012. március 12.

Legújabb hozzászólások

Hi everyone

Supose i have inserted one field value into a database say firstname Bruno and we are inserting the same value ie Bruno into databse , It will throw error message by the server side . Duplicate value should not be inserted into database .

So can anybody please help me how to check the duplicate value insertion by the server side.

Please reply whatever idea you can suggest me .
Rewati Raman
RE: how to check the duplicate value insertion by the server side
2012. szeptember 17. 4:34
Válasz

Rewati Raman

Rangsorolás: Junior Member

Hozzászólások: 93

Csatlakozás dátuma: 2012. február 24.

Legújabb hozzászólások

Hi Mukesh,

you have posted your post in wrong category....

Mukesh can you upload your error log for better understanding and as per i understood your question you want to validate the database insertion at serverside and are you trying it for custom table or built-in table?

Regards,
Rewati Raman
Tanweer Ahmed Ansari
RE: how to check the duplicate value insertion by the server side
2012. szeptember 20. 8:36
Válasz

Tanweer Ahmed Ansari

Rangsorolás: Regular Member

Hozzászólások: 199

Csatlakozás dátuma: 2010. március 11.

Legújabb hozzászólások

Hi Mukesh,

Write a Finder method By Name OR a Dynamic Query on your server side.

Check the name passed from the UI against those available in the Db.

Based on the data returned by your method, You can choose to Save the value in Db OR Skip saving.

Hope this helps.


Regards,
Tanweer,
LIUG Member
mukesh kumar
RE: how to check the duplicate value insertion by the server side
2012. szeptember 21. 5:30
Válasz

mukesh kumar

Rangsorolás: Junior Member

Hozzászólások: 38

Csatlakozás dátuma: 2012. március 12.

Legújabb hozzászólások

@Tanweer Ahmed Ansari

Thanks for your suggestion..
I achieved my goal by implementing your idea...

Regards,
Mukesh Kumar.
Tanweer Ahmed Ansari
RE: how to check the duplicate value insertion by the server side
2012. szeptember 22. 0:21
Válasz

Tanweer Ahmed Ansari

Rangsorolás: Regular Member

Hozzászólások: 199

Csatlakozás dátuma: 2010. március 11.

Legújabb hozzászólások

mukesh kumar:
@Tanweer Ahmed Ansari

Thanks for your suggestion..
I achieved my goal by implementing your idea...

Regards,
Mukesh Kumar.



Mukesh, Happy 2 Help !!!

Regards,
Tanweer,
LIUG Member
mukesh kumar
RE: how to check the duplicate value insertion by the server side
2012. szeptember 25. 23:34
Válasz

mukesh kumar

Rangsorolás: Junior Member

Hozzászólások: 38

Csatlakozás dátuma: 2012. március 12.

Legújabb hozzászólások

Hi Tanweer ,

Hope you are fine.

I have one more issue .

Can i achieve the same task in client side ?

Regards,

Mukesh
Mazhar Alam
RE: how to check the duplicate value insertion by the server side
2012. szeptember 26. 0:27
Válasz

Mazhar Alam

Rangsorolás: Regular Member

Hozzászólások: 179

Csatlakozás dátuma: 2011. november 25.

Legújabb hozzászólások

The same way goes for the client side too..fetch the list and compare them with the inputted values...and based on this you can check duplicity..
mukesh kumar
RE: how to check the duplicate value insertion by the server side
2012. szeptember 26. 2:48
Válasz

mukesh kumar

Rangsorolás: Junior Member

Hozzászólások: 38

Csatlakozás dátuma: 2012. március 12.

Legújabb hozzászólások

Hi Mazhar Alam,

Thanks for suggestion. But how i can write the jdbc connection code in javascript . Because we have to compare the input data with data which is available in database.

I am not sure whether it is possible to write the jdbc connection code in javascript . Can you please answer me.

Regards,

Mukesh Kumar
Tanweer Ahmed Ansari
RE: how to check the duplicate value insertion by the server side
2012. szeptember 26. 8:23
Válasz

Tanweer Ahmed Ansari

Rangsorolás: Regular Member

Hozzászólások: 199

Csatlakozás dátuma: 2010. március 11.

Legújabb hozzászólások

mukesh kumar:
Hi Tanweer ,

Hope you are fine.

I have one more issue .

Can i achieve the same task in client side ?

Regards,

Mukesh


Hi Mukesh,
You cannot achieve this in client side.Since client codes are executed by the Browser and not by the Server.You will have to make a call to DB, fetch the values, then compare and then perform your logic.

Hope this helps,

Regards,
Tanweer,
LIUG Member
mukesh kumar
RE: how to check the duplicate value insertion by the server side
2012. szeptember 26. 23:00
Válasz

mukesh kumar

Rangsorolás: Junior Member

Hozzászólások: 38

Csatlakozás dátuma: 2012. március 12.

Legújabb hozzászólások

thanks Tanweer .

i would like to discuss one more thing Whether it is possible through Ajax .

Regards,

mukesh
Mazhar Alam
RE: how to check the duplicate value insertion by the server side
2012. szeptember 26. 22:41
Válasz

Mazhar Alam

Rangsorolás: Regular Member

Hozzászólások: 179

Csatlakozás dátuma: 2011. november 25.

Legújabb hozzászólások

Hi,
I dont think you can write javascripts for jdbc conn..that wont work..instead
-create a class then fetch the database values and then call it in your jsp page...then compare
mukesh kumar
RE: how to check the duplicate value insertion by the server side
2012. szeptember 26. 22:55
Válasz

mukesh kumar

Rangsorolás: Junior Member

Hozzászólások: 38

Csatlakozás dátuma: 2012. március 12.

Legújabb hozzászólások

Hi Mazhar Alam

Ya you are right . creating a class then fetching the database values and then calling it in your jsp page...then comparing . then it will be server side .Am i right ?

Regards,

Mukesh