用c#做个简单知识库管理系统,连接数据库,visual studio2015能打开并运行,两天完成

用c#做个简单知识库管理系统,连接数据库,visualstudio2015能打开并运行,两天完成求大神帮帮忙,星期天下午之前做完,重谢... 用c#做个简单知识库管理系统,连接数据库,visual studio2015能打开并运行,两天完成求大神帮帮忙,星期天下午之前做完,重谢 展开
 我来答
SWEETSWISS
2017-03-25 · TA获得超过562个赞
知道小有建树答主
回答量:701
采纳率:0%
帮助的人:192万
展开全部

帮你做了个,请采纳

添加附件失败,只有贴代码了

private void btn_Add_Click(object sender, EventArgs e)
        {
            KnowLedge kk = new KnowLedge();
            kk.Subject = cb_Subject.Text;
            kk.Know = rtb_Know.Text;
            kk.PicturePath = pic_Know.ImageLocation;
            AddNewKnowLedge(kk);
            Form1_Load(null,null);
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            // TODO: 这行代码将数据加载到表“知识库.Knowledge”中。您可以根据需要移动或删除它。
            this.knowledgeTableAdapter.Fill(this.知识库.Knowledge);

        }

        public OleDbConnection getConnection()
        {
            OleDbConnection conn = null;
            try
            {
                string connectionstr = @"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=|DataDirectory|\DB.accdb;Persist Security Info=True";
                conn = new OleDbConnection(connectionstr);
                conn.Open();
            }
            catch (Exception e)
            {
                Console.WriteLine(e.Message);
            }
            return conn;
        }
        public void closeconnection(OleDbConnection conn)
        {
            try
            {
                conn.Close();
            }
            catch (Exception e)
            {

            }
        }

        public class KnowLedge
        {
            public string Subject = "";
            public string Know = "";
            public string PicturePath = "";
        }

        public void AddNewKnowLedge(KnowLedge kk)
        {
            byte[] myByte = new byte[0];
            try
            {
                FileStream filestream = new FileStream(this.pic_Know.ImageLocation, FileMode.Open, FileAccess.Read);
                BinaryReader binaryReader = new BinaryReader(filestream);
                myByte = new byte[filestream.Length];
                binaryReader.Read(myByte, 0, Convert.ToInt32(filestream.Length));
                filestream.Close();
            }
            catch { }
            OleDbConnection conn = getConnection();
            OleDbCommand command = new OleDbCommand();
            command.Connection = conn;
            command.CommandText = @"insert into Knowledge(Subject,Know,Picture)values('" + kk.Subject + "','" + kk.Know + "',@photo1)";
            command.CommandType = CommandType.Text;
            OleDbParameter imageType = new OleDbParameter("@photo1", OleDbType.VarBinary);
            imageType.Value = myByte;
            command.Parameters.Add(imageType).Value = myByte;
            try
            {
                command.ExecuteNonQuery();
                MessageBox.Show("添加成功");
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, "添加失败");
            }
            closeconnection(conn);
        }
       
        private void pic_Know_Click(object sender, EventArgs e)
        {
            OpenFileDialog _dialog = new OpenFileDialog();
            _dialog.Filter =
            "All Image Files|*.bmp;*.ico;*.gif;*.jpeg;*.jpg;*.png;*.tif;*.tiff|" +
            "Windows Bitmap(*.bmp)|*.bmp|" +
            "Windows Icon(*.ico)|*.ico|" +
            "Graphics Interchange Format (*.gif)|(*.gif)|" +
            "JPEG File Interchange Format (*.jpg)|*.jpg;*.jpeg|" +
            "Portable Network Graphics (*.png)|*.png|" +
            "Tag Image File Format (*.tif)|*.tif;*.tiff";
            if (DialogResult.OK == _dialog.ShowDialog(this))
            {
                pic_Know.ImageLocation = _dialog.FileName;
            }
        }

        private void dgv_mes_CellContentClick(object sender, DataGridViewCellEventArgs e)
        {
            //pic_Know.Image=Convert.to(dgv_mes.CurrentRow.Cells["Picture"]);
            string id = dgv_mes.CurrentRow.Cells["Col_ID"].Value.ToString();
            string sql = "select * from Knowledge where ID=" + int.Parse(id);
            DataSet ds = new DataSet();
            OleDbConnection conn = getConnection();
            OleDbDataAdapter oda = new OleDbDataAdapter(sql, conn);
            oda.Fill(ds);
            byte[] img = new byte[0];
            if (ds != null)
            {
                DataRow dr = ds.Tables[0].Rows[0];
                if (!dr["Picture"].ToString().Equals(""))
                {
                    img = (byte[])dr["Picture"];
                    try
                    {
                        MemoryStream stream = new MemoryStream(img, true);
                        stream.Write(img, 0, img.Length);
                        pic_Know.Image = new Bitmap(stream);
                    }
                    catch { }
                }
                if (!dr["Know"].ToString().Equals(""))
                {
                    rtb_Know.Text = dr["Know"].ToString();
                }
                if (!dr["Subject"].ToString().Equals(""))
                {
                    cb_Subject.Text = dr["Subject"].ToString();
                }
            }
            closeconnection(conn);
        }

        private void btn_Find_Click(object sender, EventArgs e)
        {
            string sql = "select * from Knowledge where Know like '%" + rtb_Know.Text + "%' and Subject like '%" + cb_Subject.Text + "%' ";
            DataSet ds = new DataSet();
            OleDbConnection conn = getConnection();
            OleDbDataAdapter oda = new OleDbDataAdapter(sql, conn);
            oda.Fill(ds);
            dgv_mes.DataSource=ds.Tables[0];
        }

追问
还有什么附件呀,可以发给我看看吗
pieryon
2017-03-25 · 知道合伙人数码行家
pieryon
知道合伙人数码行家
采纳数:14410 获赞数:166869
获取软件设计师高级职称 万达金融最佳创新奖

向TA提问 私信TA
展开全部
有 偿 可 做
更多追问追答
追问
多少钱,开价吧,我还是学生,给不了太多哦
追答
120
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式