Example #1
0
        public static bool Del(int KeyValue, string SQLConnectionName)
        {
            Locks_TokensDS ds = new Locks_TokensDS();
            try
            {
                SqlConnection SQLConn = new SqlConnection(getConnstring(SQLConnectionName));

                SqlCommand iSqlCommand = new SqlCommand(SP_Del, SQLConn);
                iSqlCommand.CommandType = CommandType.StoredProcedure;

                //Set the Column to the value of "ApplicationName" by retreiving from the web.config roleprovider settings
                iSqlCommand.Parameters.Add(new SqlParameter("@LockID", SqlDbType.Int));
                iSqlCommand.Parameters["@LockID"].Value = KeyValue;

                SQLConn.Open();
                iSqlCommand.ExecuteNonQuery();
                iSqlCommand.Dispose();
                SQLConn.Close();
                return true;
            }
            catch
            {
                return false;
            }
        }
Example #2
0
        public static int Add(Locks_TokensDS.Locks_TokensRow dr, string SQLConnectionName)
        {
            try
            {
                SqlConnection SQLConn = new SqlConnection(getConnstring(SQLConnectionName));

                SqlCommand iSqlCommand = GenerateSqlCommandfromDataRow(dr, SP_Add);

                iSqlCommand.Connection = SQLConn;
                //Set the ID column as output as the GenerateSQLCommand would not have done this.
                iSqlCommand.Parameters["@ID"].Direction = ParameterDirection.InputOutput;
                iSqlCommand.UpdatedRowSource = UpdateRowSource.OutputParameters;

                SQLConn.Open();
                iSqlCommand.ExecuteNonQuery();
                int newID = (int)iSqlCommand.Parameters["@ID"].Value;
                iSqlCommand.Dispose();
                SQLConn.Close();
                return newID;

            }
            catch
            {
                return -1;
            }
        }
Example #3
0
 /// <summary>
 /// Saves a Lock Token
 /// </summary>
 /// <param name="FolderID">The ID of the Lock in the Database</param>
 /// <returns></returns>   
 public static int SaveLockToken(Locks_TokensDS.Locks_TokensRow nlr)
 {
     return FileBLC.SaveLockToken(nlr);
 }
Example #4
0
        public static Locks_TokensDS.Locks_TokensRow Get(int KeyValue, string SQLConnectionName)
        {
            Locks_TokensDS ds = new Locks_TokensDS();

            try
            {
                SqlConnection SQLConn = new SqlConnection(getConnstring(SQLConnectionName));

                SqlDataAdapter iDataAdapter = new SqlDataAdapter(SP_Get, SQLConn);
                iDataAdapter.SelectCommand.CommandType = CommandType.StoredProcedure;

                iDataAdapter.SelectCommand.Parameters.Add(new SqlParameter("@ID", SqlDbType.Int));
                iDataAdapter.SelectCommand.Parameters["@ID"].Value = KeyValue;

                SQLConn.Open();
                //Fill the DataSet with the rows that are returned.
                iDataAdapter.Fill(ds, ds.Locks_Tokens.TableName);
                iDataAdapter.Dispose();

                SQLConn.Close();

            }
            catch
            {
                return null;
            }

            if (ds.Locks_Tokens.Rows.Count == 1)
            {

                return (Locks_TokensDS.Locks_TokensRow)ds.Locks_Tokens.Rows[0];
            }
            else
            {
                return null;
            }
        }
Example #5
0
        private static SqlCommand GenerateSqlCommandfromDataRow(Locks_TokensDS.Locks_TokensRow Data, string StoredProcName)
        {
            SqlCommand retCom = new SqlCommand(StoredProcName);
            retCom.CommandType = CommandType.StoredProcedure;

            for (int Eni = 0; Eni < Data.ItemArray.Length; Eni++)
            {
                string stype = Data[Eni].GetType().ToString();

                switch (stype)
                {
                    case "System.Int32":
                        retCom.Parameters.Add("@" + Data.Table.Columns[Eni].ColumnName, SqlDbType.Int);
                        retCom.Parameters["@" + Data.Table.Columns[Eni].ColumnName].Value = Data[Eni];
                        break;
                    case "System.Int64":
                        retCom.Parameters.Add("@" + Data.Table.Columns[Eni].ColumnName, SqlDbType.BigInt);
                        retCom.Parameters["@" + Data.Table.Columns[Eni].ColumnName].Value = Data[Eni];
                        break;
                    case "System.String":
                        retCom.Parameters.Add("@" + Data.Table.Columns[Eni].ColumnName, SqlDbType.VarChar);
                        retCom.Parameters["@" + Data.Table.Columns[Eni].ColumnName].Value = Data[Eni];
                        break;
                    case "System.Byte[]":
                        retCom.Parameters.Add("@" + Data.Table.Columns[Eni].ColumnName, SqlDbType.Image);
                        retCom.Parameters["@" + Data.Table.Columns[Eni].ColumnName].Value = Data[Eni];

                        break;
                    case "System.DateTime":
                        retCom.Parameters.Add("@" + Data.Table.Columns[Eni].ColumnName, SqlDbType.DateTime);
                        retCom.Parameters["@" + Data.Table.Columns[Eni].ColumnName].Value = Data[Eni];
                        break;

                }
            }
            return retCom;
        }
Example #6
0
        public static Locks_TokensDS List(string Token, string SQLConnectionName)
        {
            Locks_TokensDS ds = new Locks_TokensDS();

            try
            {
                SqlConnection SQLConn = new SqlConnection(getConnstring(SQLConnectionName));

                SqlDataAdapter iDataAdapter = new SqlDataAdapter(SP_List, SQLConn);
                iDataAdapter.SelectCommand.CommandType = CommandType.StoredProcedure;

                iDataAdapter.SelectCommand.Parameters.Add(new SqlParameter("@Token", SqlDbType.VarChar, 255));
                iDataAdapter.SelectCommand.Parameters["@Token"].Value = Token;

                SQLConn.Open();
                //Fill the DataSet with the rows that are returned.
                iDataAdapter.Fill(ds, ds.Locks_Tokens.TableName);
                iDataAdapter.Dispose();

                SQLConn.Close();

            }
            catch
            {
                return null;
            }
            return ds;
        }
Example #7
0
 public static int SaveLockToken(Locks_TokensDS.Locks_TokensRow nltr)
 {
     return Locks_TokensDLC.Add(nltr, DBConnName);
 }
Example #8
0
        private int saveLock(int FileID)
        {
            int retval = 1;
            Locks_TokensDS ltds = new Locks_TokensDS();
            LocksDS lds = new LocksDS();

            LocksDS.LocksRow ltr = lds.Locks.NewLocksRow();

            //ResType=0 as we aren't supporting Locked Collections

            ltr.ResType = 0;

            ltr.LockDepth = (int)this._LockDepth;
            ltr.LockOwner = _LockOwner;
            ltr.LockOwnerType = (int)_LockOwnerType;
            ltr.LockScope = (int)_LockScope;
            ltr.LockType = (int)_LockType;
            ltr.ResID = FileID;
            ltr.Timeout = _LockTimeOut;
            ltr.update_user_stamp = HttpContext.Current.User.Identity.Name;

            retval = WebDavHelper.SaveLock(ltr);

            if (retval!=-1)
            {
                Locks_TokensDS.Locks_TokensRow nltr = ltds.Locks_Tokens.NewLocks_TokensRow();
                nltr.Token = this._LockToken;
                nltr.LockID = retval;
                nltr.update_user_stamp = HttpContext.Current.User.Identity.Name;
                retval = WebDavHelper.SaveLockToken(nltr);
            }
            return retval;
        }