上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 16 下一页
摘要: 所谓事务,它是一个操作序列,这些操作要么都执行,要么都不执行,它是一个不可分割的工作单位。例如,银行转帐工作:从一个帐号扣款并使另一个帐号增款,这两个操作要么都执行,要么都不执行。 数据库事务必须具备ACID特性,ACID是Atomic(原子性)、Consistency(一致性)、Isolation 阅读全文
posted @ 2016-06-14 20:32 什么玩楞啊,我叫旺仔 阅读(230) 评论(0) 推荐(0) 编辑
摘要: 数据库练习 2、 查询教师所有的单位即不重复的Depart列。 7、 以Class降序查询Student表的所有记录。 8、 以Cno升序、Degree降序查询Score表的所有记录。 10、 查询Score表中的最高分的学生学号和课程号。(子查询或者排序) 11、 查询每门课的平均成绩。 12、查 阅读全文
posted @ 2016-06-14 20:31 什么玩楞啊,我叫旺仔 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 数据库练习 1、 查询Student表中的所有记录的Sname、Ssex和Class列。 3、 查询Student表的所有记录。 4、 查询Score表中成绩在60到80之间的所有记录。 5、 查询Score表中成绩为85,86或88的记录。 6、 查询Student表中“95031”班或性别为“女 阅读全文
posted @ 2016-06-14 20:13 什么玩楞啊,我叫旺仔 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 为了建立冗余较小、结构合理的数据库,设计数据库时必须遵循一定的规则。在关系型数据库中这种规则就称为范式。范式是符合某一种设计要求的总结。要想设计一个结构合理的关系型数据库,必须满足一定的范式。 在实际开发中最为常见的设计范式有三个: 1.第一范式 第一范式是最基本的范式。如果数据库表中的所有字段值都 阅读全文
posted @ 2016-06-14 20:12 什么玩楞啊,我叫旺仔 阅读(182) 评论(0) 推荐(0) 编辑
摘要: //写入外部存储文件 public void bt6_OnClick(View v) { //1.判断sd卡是否挂载 if (Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)) { //文本框内容 ... 阅读全文
posted @ 2016-05-28 09:29 什么玩楞啊,我叫旺仔 阅读(514) 评论(0) 推荐(0) 编辑
摘要: public void bt5_OnClick(View v) { //得到文件路径 String path=getFilesDir().getAbsolutePath()+"/test.jpg"; Toast.makeText(MainActivity.this, "path="+path, Toast.LENGTH_SH... 阅读全文
posted @ 2016-05-28 09:28 什么玩楞啊,我叫旺仔 阅读(230) 评论(0) 推荐(0) 编辑
摘要: package com.hanqi.myapplication; import android.content.Intent; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import andr 阅读全文
posted @ 2016-05-27 10:30 什么玩楞啊,我叫旺仔 阅读(139) 评论(0) 推荐(0) 编辑
摘要: package com.hanqi.testapp111; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.widg 阅读全文
posted @ 2016-05-26 12:14 什么玩楞啊,我叫旺仔 阅读(303) 评论(0) 推荐(0) 编辑
摘要: package com.hanqi.testapp111; import android.content.SharedPreferences; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; imp 阅读全文
posted @ 2016-05-24 14:51 什么玩楞啊,我叫旺仔 阅读(266) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2016-05-23 19:48 什么玩楞啊,我叫旺仔 阅读(19) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 16 下一页