Hi,
I have this STUDENT table in the database.
Student table in SQL Server:
RollNo | Mark | Result |
1 | 100 | |
2 | 50 | |
3 | 40 | |
4 | 30 | |
5 | 90 |
In JBoss BRMS i have a business rule :
Guided Rule:
When
mark < 50
then
result = "fail"
Now, on executing the BRMS should flag the marks as pass/fail and the database should get updated.
Final Result:
RollNo | Mark | Result |
1 | 100 | pass |
2 | 50 | pass |
3 | 40 | fail |
4 | 30 | fail |
5 | 90 | pass |
I need to make the JBoss BRMS and SQL server talk.
Is it Possible using java?
Please help me.
Thanks,
Pramesh