【筆記】數(shù)據(jù)庫(kù)實(shí)例代碼

一迹卢。數(shù)據(jù)庫(kù)基本概念:
數(shù)據(jù)、數(shù)據(jù)庫(kù)徒仓。數(shù)據(jù)模型/DBMS(數(shù)據(jù)庫(kù)管理系統(tǒng))/DBS(數(shù)據(jù)庫(kù)系統(tǒng))
二腐碱。數(shù)據(jù)庫(kù)內(nèi)部組成
二維表、視圖,索引
三症见,數(shù)據(jù)庫(kù)管理系統(tǒng)主要功能:
六大功能
四數(shù)據(jù)庫(kù)操作語(yǔ)言:
SQL語(yǔ)言實(shí)現(xiàn)增刪查改*一喂走。數(shù)據(jù)庫(kù)基本概念:
數(shù)據(jù)、數(shù)據(jù)庫(kù)谋作。數(shù)據(jù)模型/DBMS(數(shù)據(jù)庫(kù)管理系統(tǒng))/DBS(數(shù)據(jù)庫(kù)系統(tǒng))
二芋肠。數(shù)據(jù)庫(kù)內(nèi)部組成
二維表、視圖遵蚜,索引
三帖池,數(shù)據(jù)庫(kù)管理系統(tǒng)主要功能:
六大功能
四數(shù)據(jù)庫(kù)操作語(yǔ)言:
SQL語(yǔ)言實(shí)現(xiàn)增刪查改
實(shí)驗(yàn)內(nèi)容:
1.用VS2010創(chuàng)建名為
insert into T_Student(sno,sname,ssex,sage,sdept) values('','','','','')
select * from T_Student
insert into T_Student(Sno,Sname,Ssex,Sage,Sdept) values ('2001','李勇','男','20','CS')
insert into T_Student(Sno,Sname,Ssex,Sage,Sdept) values ('2002','劉晨','女','18','CS')
insert into T_Student(Sno,Sname,Ssex,Sage,Sdept) values ('2003','王敏','女','19','MA')
insert into T_Student(Sno,Sname,Ssex,Sage,Sdept) values ('2004','張立','男','22','IS')
insert into T_Course(Cno,Cname,Ccode) values ('1','數(shù)據(jù)庫(kù)','1')
insert into T_Course(Cno,Cname,Ccode) values ('2','英語(yǔ)','4')
insert into T_SC(Cno,Sno,Grade) values ('1','2001','88')
insert into T_SC(Cno,Sno,Grade) values ('2','2002','80')
增加一條學(xué)號(hào)為2006,姓名為張揚(yáng)
insert into T_student(sno,sname,ssex) values ('','','')
(sno,sname,ssex,sage,sdept) ('','','','','')空字符串
select * from t_student where sname='李勇'
select * from t_student where ssex='女'
select sdept from t_student where sname='張立'
select count(
) from T_student
select max(
) from t_student
update t_student set ssex='女' where sno='2001'
update t_student set sage='22' where sname='王敏'
update t_student sdept='MA' where ssex='男'

insert into T_Student (sno,sname,ssex) values ('2006','張揚(yáng)','男')
delete from t_student where sno='2006'
delete from t_student where sage=22

create table t_course(
cno int primary key,
cname varchar(10),
ccode int
);
create view as(
select sno,sname,cno,cname,grade from t_student,t_sc,t_course where t_student.sno=t_sc.sno and
t_sc. cno=t_course.cno
);
一吭净。數(shù)據(jù)庫(kù)基本概念:
數(shù)據(jù)睡汹、數(shù)據(jù)庫(kù)。數(shù)據(jù)模型/DBMS(數(shù)據(jù)庫(kù)管理系統(tǒng))/DBS(數(shù)據(jù)庫(kù)系統(tǒng))
二攒钳。數(shù)據(jù)庫(kù)內(nèi)部組成
二維表帮孔、視圖,索引
三不撑,數(shù)據(jù)庫(kù)管理系統(tǒng)主要功能:
六大功能
四數(shù)據(jù)庫(kù)操作語(yǔ)言:
SQL語(yǔ)言實(shí)現(xiàn)增刪查改
實(shí)驗(yàn)內(nèi)容:
1.用VS2010創(chuàng)建名為
insert into T_Student(sno,sname,ssex,sage,sdept) values('','','','','')
select * from T_Student
insert into T_Student(Sno,Sname,Ssex,Sage,Sdept) values ('2001','李勇','男','20','CS')
insert into T_Student(Sno,Sname,Ssex,Sage,Sdept) values ('2002','劉晨','女','18','CS')
insert into T_Student(Sno,Sname,Ssex,Sage,Sdept) values ('2003','王敏','女','19','MA')
insert into T_Student(Sno,Sname,Ssex,Sage,Sdept) values ('2004','張立','男','22','IS')
insert into T_Course(Cno,Cname,Ccode) values ('1','數(shù)據(jù)庫(kù)','1')
insert into T_Course(Cno,Cname,Ccode) values ('2','英語(yǔ)','4')
insert into T_SC(Cno,Sno,Grade) values ('1','2001','88')
insert into T_SC(Cno,Sno,Grade) values ('2','2002','80')
增加一條學(xué)號(hào)為2006文兢,姓名為張揚(yáng)
insert into T_student(sno,sname,ssex) values ('','','')
(sno,sname,ssex,sage,sdept) ('','','','','')空字符串
select * from t_student where sname='李勇'
select * from t_student where ssex='女'
select sdept from t_student where sname='張立'
select count() from T_student
select max(
) from t_student
update t_student set ssex='女' where sno='2001'
update t_student set sage='22' where sname='王敏'
update t_student sdept='MA' where ssex='男'

insert into T_Student (sno,sname,ssex) values ('2006','張揚(yáng)','男')
delete from t_student where sno='2006'
delete from t_student where sage=22

create table t_course(
cno int primary key,
cname varchar(10),
ccode int
);
create view as(
select sno,sname,cno,cname,grade from t_student,t_sc,t_course where t_student.sno=t_sc.sno and
t_sc. cno=t_course.cno
);
一。數(shù)據(jù)庫(kù)基本概念:
數(shù)據(jù)焕檬、數(shù)據(jù)庫(kù)姆坚。數(shù)據(jù)模型/DBMS(數(shù)據(jù)庫(kù)管理系統(tǒng))/DBS(數(shù)據(jù)庫(kù)系統(tǒng))
二。數(shù)據(jù)庫(kù)內(nèi)部組成
二維表实愚、視圖兼呵,索引
三,數(shù)據(jù)庫(kù)管理系統(tǒng)主要功能:
六大功能
四數(shù)據(jù)庫(kù)操作語(yǔ)言:
SQL語(yǔ)言實(shí)現(xiàn)增刪查改
實(shí)驗(yàn)內(nèi)容:
1.用VS2010創(chuàng)建名為
insert into T_Student(sno,sname,ssex,sage,sdept) values('','','','','')
select * from T_Student
insert into T_Student(Sno,Sname,Ssex,Sage,Sdept) values ('2001','李勇','男','20','CS')
insert into T_Student(Sno,Sname,Ssex,Sage,Sdept) values ('2002','劉晨','女','18','CS')
insert into T_Student(Sno,Sname,Ssex,Sage,Sdept) values ('2003','王敏','女','19','MA')
insert into T_Student(Sno,Sname,Ssex,Sage,Sdept) values ('2004','張立','男','22','IS')
insert into T_Course(Cno,Cname,Ccode) values ('1','數(shù)據(jù)庫(kù)','1')
insert into T_Course(Cno,Cname,Ccode) values ('2','英語(yǔ)','4')
insert into T_SC(Cno,Sno,Grade) values ('1','2001','88')
insert into T_SC(Cno,Sno,Grade) values ('2','2002','80')
增加一條學(xué)號(hào)為2006腊敲,姓名為張揚(yáng)
insert into T_student(sno,sname,ssex) values ('','','')
(sno,sname,ssex,sage,sdept) ('','','','','')空字符串
select * from t_student where sname='李勇'
select * from t_student where ssex='女'
select sdept from t_student where sname='張立'
select count() from T_student
select max(
) from t_student
update t_student set ssex='女' where sno='2001'
update t_student set sage='22' where sname='王敏'
update t_student sdept='MA' where ssex='男'

insert into T_Student (sno,sname,ssex) values ('2006','張揚(yáng)','男')
delete from t_student where sno='2006'
delete from t_student where sage=22

create table t_course(
cno int primary key,
cname varchar(10),
ccode int
);
create view as(
select sno,sname,cno,cname,grade from t_student,t_sc,t_course where t_student.sno=t_sc.sno and
t_sc. cno=t_course.cno
);
一击喂。數(shù)據(jù)庫(kù)基本概念:
數(shù)據(jù)、數(shù)據(jù)庫(kù)碰辅。數(shù)據(jù)模型/DBMS(數(shù)據(jù)庫(kù)管理系統(tǒng))/DBS(數(shù)據(jù)庫(kù)系統(tǒng))
二懂昂。數(shù)據(jù)庫(kù)內(nèi)部組成
二維表、視圖没宾,索引
三凌彬,數(shù)據(jù)庫(kù)管理系統(tǒng)主要功能:
六大功能
四數(shù)據(jù)庫(kù)操作語(yǔ)言:
SQL語(yǔ)言實(shí)現(xiàn)增刪查改
實(shí)驗(yàn)內(nèi)容:
1.用VS2010創(chuàng)建名為
insert into T_Student(sno,sname,ssex,sage,sdept) values('','','','','')
select * from T_Student
insert into T_Student(Sno,Sname,Ssex,Sage,Sdept) values ('2001','李勇','男','20','CS')
insert into T_Student(Sno,Sname,Ssex,Sage,Sdept) values ('2002','劉晨','女','18','CS')
insert into T_Student(Sno,Sname,Ssex,Sage,Sdept) values ('2003','王敏','女','19','MA')
insert into T_Student(Sno,Sname,Ssex,Sage,Sdept) values ('2004','張立','男','22','IS')
insert into T_Course(Cno,Cname,Ccode) values ('1','數(shù)據(jù)庫(kù)','1')
insert into T_Course(Cno,Cname,Ccode) values ('2','英語(yǔ)','4')
insert into T_SC(Cno,Sno,Grade) values ('1','2001','88')
insert into T_SC(Cno,Sno,Grade) values ('2','2002','80')
增加一條學(xué)號(hào)為2006,姓名為張揚(yáng)
insert into T_student(sno,sname,ssex) values ('','','')
(sno,sname,ssex,sage,sdept) ('','','','','')空字符串
select * from t_student where sname='李勇'
select * from t_student where ssex='女'
select sdept from t_student where sname='張立'
select count() from T_student
select max(
) from t_student
update t_student set ssex='女' where sno='2001'
update t_student set sage='22' where sname='王敏'
update t_student sdept='MA' where ssex='男'

insert into T_Student (sno,sname,ssex) values ('2006','張揚(yáng)','男')
delete from t_student where sno='2006'
delete from t_student where sage=22

create table t_course(
cno int primary key,
cname varchar(10),
ccode int
);
create view as(
select sno,sname,cno,cname,grade from t_student,t_sc,t_course where t_student.sno=t_sc.sno and
t_sc. cno=t_course.cno
);

``*
實(shí)驗(yàn)內(nèi)容:
1.用VS2010創(chuàng)建名為
insert into T_Student(sno,sname,ssex,sage,sdept) values('','','','','')
select * from T_Student
insert into T_Student(Sno,Sname,Ssex,Sage,Sdept) values ('2001','李勇','男','20','CS')
insert into T_Student(Sno,Sname,Ssex,Sage,Sdept) values ('2002','劉晨','女','18','CS')
insert into T_Student(Sno,Sname,Ssex,Sage,Sdept) values ('2003','王敏','女','19','MA')
insert into T_Student(Sno,Sname,Ssex,Sage,Sdept) values ('2004','張立','男','22','IS')
insert into T_Course(Cno,Cname,Ccode) values ('1','數(shù)據(jù)庫(kù)','1')
insert into T_Course(Cno,Cname,Ccode) values ('2','英語(yǔ)','4')
insert into T_SC(Cno,Sno,Grade) values ('1','2001','88')
insert into T_SC(Cno,Sno,Grade) values ('2','2002','80')
增加一條學(xué)號(hào)為2006循衰,姓名為張揚(yáng)
insert into T_student(sno,sname,ssex) values ('','','')
(sno,sname,ssex,sage,sdept) ('','','','','')空字符串
select * from t_student where sname='李勇'
select * from t_student where ssex='女'
select sdept from t_student where sname='張立'
select count() from T_student
select max(
) from t_student
update t_student set ssex='女' where sno='2001'
update t_student set sage='22' where sname='王敏'
update t_student sdept='MA' where ssex='男'

insert into T_Student (sno,sname,ssex) values ('2006','張揚(yáng)','男')
delete from t_student where sno='2006'
delete from t_student where sage=22

create table t_course(
cno int primary key,
cname varchar(10),
ccode int
);
create view as(
select sno,sname,cno,cname,grade from t_student,t_sc,t_course where t_student.sno=t_sc.sno and
t_sc. cno=t_course.cno
);

課程二:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace WindowsFormsApplication2
{
public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    }

    private void Form1_Load(object sender, EventArgs e)
    {
        try 
        {
            string strCon = "Data Source =.\\sqlexpress;Initial Catalog=XSGL;Integrated Security=True";
            SqlConnection mycon = new SqlConnection(strCon);
            mycon.Open();

            

            

            string StrUpd = "update T_Student set sage='25' where sname='張立'";
            SqlCommand mycmd = new SqlCommand(StrUpd, mycon);
            mycmd.ExecuteNonQuery();

            string strSel = "select sno as 學(xué)號(hào),sname as 姓名,ssex as 性別,sage as 年齡,sdept as 專業(yè) from T_Student";
            SqlDataAdapter myda = new SqlDataAdapter(strSel, mycon);
            DataTable dt = new DataTable();
            myda.Fill(dt);
            dataGridView1.DataSource = dt;

            MessageBox.Show("update sucess!");
            mycon.Close();
            
        }
            //MessageBox.Show("update sucess!");
        catch (Exception ex)
            {
                MessageBox.Show(ex.ToString());
            }
    }
}
}

直接界面能改

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace shujuku
{
public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    }

    private void Form1_Load(object sender, EventArgs e)
    {
        try
        {
            string strCon = "Data Source =.\\sqlexpress;Initial Catalog=XSGL;Integrated Security=True";
            SqlConnection mycon = new SqlConnection(strCon);
            mycon.Open();





            //string StrUpd = "update T_Student set sage='25' where sname='張立'";
            //SqlCommand mycmd = new SqlCommand(StrUpd, mycon);
            //mycmd.ExecuteNonQuery();

            string strSel = "select sno as 學(xué)號(hào),sname as 姓名,ssex as 性別,sage as 年齡,sdept as 專業(yè) from T_Student";
            SqlDataAdapter myda = new SqlDataAdapter(strSel, mycon);
            DataTable dt = new DataTable();
            myda.Fill(dt);
            dataGridView1.DataSource = dt;

            //string StrUpd = "update T_Student set sname='李晨' where sno='2001'";
            //SqlCommand mycmd = new SqlCommand(StrUpd, mycon);
            //mycmd.ExecuteNonQuery();

            //MessageBox.Show("update sucess!");
            mycon.Close();

        }
        //MessageBox.Show("update sucess!");
        catch (Exception ex)
        {
            MessageBox.Show(ex.ToString());
        }
    }

    private void button1_Click(object sender, EventArgs e)
    {
        string strCon = "Data Source =.\\sqlexpress;Initial Catalog=XSGL;Integrated Security=True";
        SqlConnection mycon = new SqlConnection(strCon);
        mycon.Open();

        string sname = textBox1.Text;
        string sage = textBox2.Text;



        string StrUpd = "update T_Student set sage='" + sage + "' where sname='" + sname + "'";
        SqlCommand mycmd = new SqlCommand(StrUpd, mycon);
        mycmd.ExecuteNonQuery();

        string strSel = "select sno as 學(xué)號(hào),sname as 姓名,ssex as 性別,sage as 年齡,sdept as 專業(yè) from T_Student";
        SqlDataAdapter myda = new SqlDataAdapter(strSel, mycon);
        DataTable dt = new DataTable();
        myda.Fill(dt);
        dataGridView1.DataSource = dt;

        

        MessageBox.Show("update sucess!");
        mycon.Close();
    }

    private void richTextBox1_TextChanged(object sender, EventArgs e)
    {

    }

    private void button3_Click(object sender, EventArgs e)
    {

    }
}
}

界面添加信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace shujuku
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void Form1_Load(object sender, EventArgs e)
{
try
{
string strCon = "Data Source =.\\sqlexpress;Initial Catalog=XSGL;Integrated Security=True";
SqlConnection mycon = new SqlConnection(strCon);
mycon.Open();





//string StrUpd = "update T_Student set sage='25' where sname='張立'";
//SqlCommand mycmd = new SqlCommand(StrUpd, mycon);
//mycmd.ExecuteNonQuery();

string strSel = "select sno as 學(xué)號(hào),sname as 姓名,ssex as 性別,sage as 年齡,sdept as 專業(yè) from T_Student";
SqlDataAdapter myda = new SqlDataAdapter(strSel, mycon);
DataTable dt = new DataTable();
myda.Fill(dt);
dataGridView1.DataSource = dt;

//string StrUpd = "update T_Student set sname='李晨' where sno='2001'";
//SqlCommand mycmd = new SqlCommand(StrUpd, mycon);
//mycmd.ExecuteNonQuery();

//MessageBox.Show("update sucess!");
mycon.Close();

}
//MessageBox.Show("update sucess!");
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
}

private void button1_Click(object sender, EventArgs e)
{
string strCon = "Data Source =.\\sqlexpress;Initial Catalog=XSGL;Integrated Security=True";
SqlConnection mycon = new SqlConnection(strCon);
mycon.Open();

string sname = textBox1.Text;
string sage = textBox2.Text;
string sno = textBox3.Text;
string ssex = textBox4.Text;
string sdept = textBox5.Text;



//string StrUpd = "update T_Student set sage='" + sage + "' where sname='" + sname + "'";
string StrUpd = "insert into T_Student(Sno,Sname,Ssex,Sage,Sdept)  values ('"+sno+"','"+sname+"','"+ssex+"','"+sage+"','"+sdept+"')";

SqlCommand mycmd = new SqlCommand(StrUpd, mycon);
mycmd.ExecuteNonQuery();

string strSel = "select sno as 學(xué)號(hào),sname as 姓名,ssex as 性別,sage as 年齡,sdept as 專業(yè) from T_Student";
   
SqlDataAdapter myda = new SqlDataAdapter(strSel, mycon);
DataTable dt = new DataTable();
myda.Fill(dt);
dataGridView1.DataSource = dt;



MessageBox.Show("update sucess!");
mycon.Close();
}

private void richTextBox1_TextChanged(object sender, EventArgs e)
{

}

private void button3_Click(object sender, EventArgs e)
{

}
}
}

==================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末铲敛,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子会钝,更是在濱河造成了極大的恐慌伐蒋,老刑警劉巖,帶你破解...
    沈念sama閱讀 217,185評(píng)論 6 503
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異先鱼,居然都是意外死亡徒蟆,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,652評(píng)論 3 393
  • 文/潘曉璐 我一進(jìn)店門型型,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人全蝶,你說(shuō)我怎么就攤上這事闹蒜。” “怎么了抑淫?”我有些...
    開封第一講書人閱讀 163,524評(píng)論 0 353
  • 文/不壞的土叔 我叫張陵绷落,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我始苇,道長(zhǎng)砌烁,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 58,339評(píng)論 1 293
  • 正文 為了忘掉前任催式,我火速辦了婚禮函喉,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘荣月。我一直安慰自己管呵,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,387評(píng)論 6 391
  • 文/花漫 我一把揭開白布哺窄。 她就那樣靜靜地躺著捐下,像睡著了一般。 火紅的嫁衣襯著肌膚如雪萌业。 梳的紋絲不亂的頭發(fā)上坷襟,一...
    開封第一講書人閱讀 51,287評(píng)論 1 301
  • 那天,我揣著相機(jī)與錄音生年,去河邊找鬼婴程。 笑死,一個(gè)胖子當(dāng)著我的面吹牛晶框,可吹牛的內(nèi)容都是我干的排抬。 我是一名探鬼主播,決...
    沈念sama閱讀 40,130評(píng)論 3 418
  • 文/蒼蘭香墨 我猛地睜開眼授段,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼蹲蒲!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起侵贵,我...
    開封第一講書人閱讀 38,985評(píng)論 0 275
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤届搁,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體卡睦,經(jīng)...
    沈念sama閱讀 45,420評(píng)論 1 313
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡宴胧,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,617評(píng)論 3 334
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了表锻。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片恕齐。...
    茶點(diǎn)故事閱讀 39,779評(píng)論 1 348
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖瞬逊,靈堂內(nèi)的尸體忽然破棺而出显歧,到底是詐尸還是另有隱情,我是刑警寧澤确镊,帶...
    沈念sama閱讀 35,477評(píng)論 5 345
  • 正文 年R本政府宣布士骤,位于F島的核電站,受9級(jí)特大地震影響蕾域,放射性物質(zhì)發(fā)生泄漏拷肌。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,088評(píng)論 3 328
  • 文/蒙蒙 一旨巷、第九天 我趴在偏房一處隱蔽的房頂上張望巨缘。 院中可真熱鬧,春花似錦契沫、人聲如沸带猴。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,716評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)拴清。三九已至,卻和暖如春会通,著一層夾襖步出監(jiān)牢的瞬間口予,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,857評(píng)論 1 269
  • 我被黑心中介騙來(lái)泰國(guó)打工涕侈, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留沪停,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 47,876評(píng)論 2 370
  • 正文 我出身青樓裳涛,卻偏偏與公主長(zhǎng)得像木张,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子端三,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,700評(píng)論 2 354

推薦閱讀更多精彩內(nèi)容