Example #1
0
        public Dictionary <string, object> GetAccess(string openid)
        {
            string          sql        = @"SELECT access_token_id,new_date,refresh_token FROM access_token where openid=:openid";
            OracleParameter parameters =
                new OracleParameter(":openid", OracleType.VarChar);

            parameters.Value = openid;
            return(opt.GetRow(sql, parameters));
        }