You are currently viewing the MySQL section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
i am working on an online examination project using JSP and MySql. I am right now on the documentation phase. I need to document test cases for the same. Can anyone suggest me any test cases conditions that i need to take care of with respect to submitting data to the database.
One thing you should consider expecially when submitting data to the database is
validating users input. For example, do you restrict submission of text only or
alpha numeric characters only. What if someone wants to sabotage your test project by submitting a script with bug/virus.
JOHN
Yeah, that is true for any web database. You have to use valdication rules that prevent malicious scripts. So you need to know the syntax of the scripts, and prevent certain actions by web users.