Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
using (IDbConnection cnn = new SqlConnection())
{
IDbCommand cmd = new SqlCommand("select * from foo", cnn);
cmd.ExecuteReader();
}
IDbConnection cnn = new SqlConnection()
IDbCommand cmd = new SqlCommand("select * from foo", cnn);
try
{
cmd.ExecuteReader();
}
finally
{
cmd.Dispose();
cnn.Dispose();
}