RDFSharp.Store.RDFSQLServerStore.RemoveQuadruple C# (CSharp) Метод

RemoveQuadruple() публичный Метод

Removes the given quadruples from the store
public RemoveQuadruple ( RDFQuadruple quadruple ) : RDFStore
quadruple RDFQuadruple
Результат RDFStore
        public override RDFStore RemoveQuadruple(RDFQuadruple quadruple)
        {
            if (quadruple  != null) {

                //Create command
                var command = new SqlCommand("DELETE FROM [dbo].[Quadruples] WHERE [QuadrupleID] = @QID", this.Connection);
                command.Parameters.Add(new SqlParameter("QID", SqlDbType.BigInt));

                //Valorize parameters
                command.Parameters["QID"].Value = quadruple.QuadrupleID;

                try {

                    //Open connection
                    this.Connection.Open();

                    //Prepare command
                    command.Prepare();

                    //Open transaction
                    command.Transaction = this.Connection.BeginTransaction();

                    //Execute command
                    command.ExecuteNonQuery();

                    //Close transaction
                    command.Transaction.Commit();

                    //Close connection
                    this.Connection.Close();

                }
                catch (Exception ex) {

                    //Rollback transaction
                    command.Transaction.Rollback();

                    //Close connection
                    this.Connection.Close();

                    //Propagate exception
                    throw new RDFStoreException("Cannot delete data from SQL Server store because: " + ex.Message, ex);

                }
            }
            return this;
        }