- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
SqlConnection connection = new SqlConnection(connectionString);
SqlCommand command = connection.CreateCommand();
using (connection = new SqlConnection(connectionString))
{
command.CommandText = storedProcedure;
}
command.Connection.Open();
someone 05.02.2013 09:58 # 0
DBdev 05.02.2013 10:53 # +4
someone 05.02.2013 12:25 # 0