JDBC - Executing stored procedures

To execute a stored procedure on your database server with JDBC, you need to prepare a CallableStatement using your active connection. Input and output parameters but be explicitly declared. [Read More]
Tags: java

ASP.NET pages without code-behind

Although this is not the best way to do it, there may be instances where you can’t use a code-behind cs file. In that case, here is a basic example of how to set up the aspx file: [Read More]
Tags: asp.net