Wiki Spaces

Documentation
Projects
Resources

Get Help from Others

Q&A: Ask OpenMRS
Discussion: OpenMRS Talk
Real-Time: IRC Chat | Slack

Documentation

Page tree
Skip to end of metadata
Go to start of metadata

Example:

String selectStatement = “SELECT account_balance FROM user_data WHERE user_name = ? “;
PreparedStatement prepStmt = con.prepareStatement(selectStatement);
prepStmt.setString(1, request.getParameter(“customerName”));
ResultSet rs = prepStmt.executeQuery();
  • No labels