C# - Resizing images

The following function can be used to resize images on your machine. Note that this function works out the image format internally and creates a file of the same format. You may want to adjust this to output a file of a different format. [Read More]
Tags: c#

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