首页 > 其他分享 >10.24

10.24

时间:2025-01-02 15:41:05浏览次数:1  
标签:10.24 String scofield Computer English 100 Math

实验4

NoSQL和关系数据库的操作比较

 

1.实验目的

(1)理解四种数据库(MySQL、HBase、Redis和MongoDB)的概念以及不同点;

(2)熟练使用四种数据库操作常用的Shell命令;

(3)熟悉四种数据库操作常用的Java API。

2.实验平台

(1)操作系统:Linux(建议Ubuntu16.04或Ubuntu18.04);

(2)Hadoop版本:3.1.3;

(3)MySQL版本:5.6;

(4)HBase版本:2.2.2;

(5)Redis版本:5.0.5;

(6)MongoDB版本:4.0.16;

(7)JDK版本:1.8;

(8)Java IDE:Eclipse;

3.实验步骤

(一) MySQL数据库操作

学生表如14-7所示。

表14-7 学生表Student

Name

English

Math

Computer

zhangsan

69

86

77

lisi

55

100

88

1. 根据上面给出的Student表,在MySQL数据库中完成如下操作:

(1)      在MySQL中创建Student表,并录入数据;

 

 

 

(2)      用SQL语句输出Student表中的所有记录;

 

 

(3)      查询zhangsan的Computer成绩;

 

 

(4)      修改lisi的Math成绩,改为95。

 

 

       

2.根据上面已经设计出的Student表,使用MySQL的JAVA客户端编程实现以下操作:

(1)向Student表中添加如下所示的一条记录:

scofield

45

89

100

       scofield 45 89 100

(2)获取scofield的English成绩信息

       package com.mysql;

import java.sql.*;

public class MysqlTest {

static final String DRIVER = "com.mysql.jdbc.Driver";

static final String DB = "jdbc:mysql://localhost/test?useUnicode=true&characterEncoding=utf-8&useSSL=false";

static final String USER = "root";

static final String PASSWD = "hadoop";

public static void main(String[] args) {

Connection conn = null;

Statement stmt = null;

try {

Class.forName(DRIVER);

System.out.println("Connecting to a selected database...");

conn = DriverManager.getConnection(DB, USER, PASSWD);

stmt = conn.createStatement();

String sql = "insert into student values('scofield',45,89,100)";

stmt.executeUpdate(sql);

System.out.println("Inserting records into the table successfully!");

} catch (ClassNotFoundException e) {

e.printStackTrace();

} catch (SQLException e) {

e.printStackTrace();

} finally {

if (stmt != null)

try {

stmt.close();

} catch (SQLException e) {

e.printStackTrace();

}

if (conn != null)

try {

conn.close();

} catch (SQLException e) {

e.printStackTrace();

}

}

}

}

 

(二)HBase数据库操作

学生表Student如表14-8所示。

表14-8 学生表Student

     name

score

English

Math

Computer

zhangsan

69

86

77

lisi

55

100

88

         
  1. 根据上面给出的学生表Student的信息,执行如下操作:

(1)      用Hbase Shell命令创建学生表Student;

 

 

 

 

 

(2)      用scan命令浏览Student表的相关信息;

 

 

 

(3)      查询zhangsan的Computer成绩;

 

 

(4)修改lisi的Math成绩,改为95。

 

2.根据上面已经设计出的Student表,用HBase API编程实现以下操作:

(1)添加数据:English:45  Math:89      Computer:100

scofield

45

89

100

       scofield 45 89 100

(2)获取scofield的English成绩信息。

public class HbaseTest {

public static Configuration configuration;

public static Connection connection;

public static Admin admin;

public static void main(String[] args) {

configuration = HBaseConfiguration.create();

configuration.set("hbase.rootdir", "hdfs://localhost:9000/hbase");

try {

connection = ConnectionFactory.createConnection(configuration);

admin = connection.getAdmin();

} catch (IOException e) {

e.printStackTrace();

}

try {

insertRow("student", "scofield", "score", "English", "45");

insertRow("student", "scofield", "score", "Math", "89");

insertRow("student", "scofield", "score", "Computer", "100");

} catch (IOException e) {

e.printStackTrace();

}

close();

}

public static void insertRow(String tableName, String rowKey,

String colFamily, String col, String val) throws IOException {

Table table = connection.getTable(TableName.valueOf(tableName));

Put put = new Put(rowKey.getBytes());

put.addColumn(colFamily.getBytes(), col.getBytes(), val.getBytes());

table.put(put);

table.close();

}

public static void close() {

try {

if (admin != null) {

admin.close();

}

if (null != connection) {

connection.close();

}

} catch (IOException e) {

e.printStackTrace();

}

}

}

 

(三)Redis数据库操作

Student键值对如下:

zhangsan:{

English: 69

Math: 86

Computer: 77

lisi:{

English: 55

Math: 100

Computer: 88

 

1. 根据上面给出的键值对,完成如下操作:

(1)用Redis的哈希结构设计出学生表Student(键值可以用student.zhangsan和student.lisi来表示两个键值属于同一个表); 

 

 

 

(2)用hgetall命令分别输出zhangsan和lisi的成绩信息;

 

 

 

(4)      用hget命令查询zhangsan的Computer成绩;

 

 

(5)      修改lisi的Math成绩,改为95。

 

 

2.根据上面已经设计出的学生表Student,用Redis的JAVA客户端编程(jedis),实现如下操作:

(1)添加数据:English:45  Math:89      Computer:100

       该数据对应的键值对形式如下:

scofield:{

English: 45

Math: 89

Computer: 100

import java.util.Map;

import redis.clients.jedis.Jedis;

public class test {

public static void main(String[] args) {

Jedis jedis = new Jedis("localhost");

jedis.hset("student.scofield", "English", "45");

jedis.hset("student.scofield", "Math", "89");

jedis.hset("student.scofield", "Computer", "100");

Map<String, String> value = jedis.hgetAll("student.scofield");

for (Map.Entry<String, String> entry : value.entrySet()) {

System.out.println(entry.getKey() + ":" + entry.getValue());

}

}

}

 

(2)获取scofield的English成绩信息

       import redis.clients.jedis.Jedis;

class RedisTest2 {

public static void main(String[] args) {

Jedis jedis = new Jedis("localhost");

String value = jedis.hget("student.scofield", "English");

System.out.println("scofield's English score is: " + value);

}

}

 

(四)MongoDB数据库操作

Student文档如下:

{

“name”: “zhangsan”,

“score”: {

“English”: 69,

“Math”: 86,

“Computer”: 77

}

}

{

“name”: “lisi”,

“score”: {

“English”: 55,

“Math”: 100,

“Computer”: 88

}

}

 

1.根据上面给出的文档,完成如下操作:

(1)用MongoDB Shell设计出student集合;

 

 

(2)用find()方法输出两个学生的信息;

 

 

(1)      用find()方法查询zhangsan的所有成绩(只显示score列);

 

 

(2)      修改lisi的Math成绩,改为95。

 

      

2.根据上面已经设计出的Student集合,用MongoDB的Java客户端编程,实现如下操作:

(1)添加数据:English:45       Math:89  Computer:100

       与上述数据对应的文档形式如下:

{

“name”: “scofield”,

“score”: {

“English”: 45,

“Math”: 89,

“Computer”: 100

}

}

   public class MongoTest {

public static void main(String[] args) {

MongoClient mongoClient = new MongoClient("localhost", 27017);

MongoDatabase mongoDatabase = mongoClient.getDatabase("student");

MongoCollection<Document> collection = mongoDatabase

.getCollection("student");

Document document = new Document("name", "scofield").append(

"score",

new Document("English", 45).append("Math", 89).append(

"Computer", 100));

List<Document> documents = new ArrayList<Document>();

documents.add(document);

collection.insertMany(documents);

System.out.println("文档插入成功");

}

}

 

(2)获取scofield的所有成绩成绩信息(只显示score列)

public class MongoTest2 {

public static void main(String[] args) {

MongoClient mongoClient=new MongoClient("localhost",27017);

MongoDatabase mongoDatabase = mongoClient.getDatabase("student");

MongoCollection<Document> collection = mongoDatabase.getCollection("student");

MongoCursor<Document> cursor=collection.find( new Document("name","scofield")).

projection(new Document("score",1).append("_id", 0)).iterator();

while(cursor.hasNext())

System.out.println(cursor.next().toJson());

}

}

 

4.实验报告

题目:

NoSQL和关系数据库的操作比较

姓名

王士英

日期11.25

实验环境:idea,mysql

实验内容与完成情况:

出现的问题:IDEA中MongoDB的连接失败

解决方案(列出遇到的问题和解决办法,列出没有解决的问题): 使用最新连接

标签:10.24,String,scofield,Computer,English,100,Math
From: https://www.cnblogs.com/jais/p/18647909

相关文章

  • 【闲话】01.10.24
    0110闲话头图:今日推歌:LonPi《绣球花feat.歌爱雪》前奏特别特别伟大,,,是与你十分相称的绣球花啊例行学术:关于\(Kruskal\)判环我23年10月的一点新理解:用\(fa\_u\)和\(fa\_v\)记录\(e[i]\)这条边所在链的两个端点。如:1-2-3-4-5-6-7这条链,假设\(e[3]\)是......
  • 10.24
    packagecom.itheima.mybatisdatabaseexample.pojo;importlombok.AllArgsConstructor;importlombok.Data;importlombok.NoArgsConstructor;importjava.time.LocalDate;importjava.time.LocalDateTime;@Data@AllArgsConstructor@NoArgsConstructorpublicclass......
  • 10.24随笔
    逻辑运算And:与同时满足两个条件的值。Select*fromempwheresal>2000andsal<3000;查询EMP表中SAL列中大于2000小于3000的值。Or:或满足其中一个条件的值Select*fromempwheresal>2000orcomm>500;查询emp表中SAL大于2000或COMM大于500......
  • 10.24
    今日学习内容<%@pageimport="java.sql.PreparedStatement"%><%@pageimport="java.sql.*"%><%@pageimport="java.sql.DriverManager"%><%--CreatedbyIntelliJIDEA.TochangethistemplateuseFile|Settings......
  • 大二快乐日记10.24
    3.@WebServlet实现多重映射Servlet3.0增加了对@WebServlet注解的支持,我们可以在urlPatterns属性中,以字符串数组的形式指定一组映射规则来实现Servlet的多重映射。以servletDemo为例,在@WebServlet注解的urlPatterns属性中添加一组虚拟路径,代码如下。纯文本复制pac......
  • Linux第四章文件权限 2023.10.24
    1、UGO设置文件属性与权限chown:修改文件属主,属性chgrp:修改文件属组chmod:修改文件权限 用法例如(1)chownqfedufile2;chownqfedu02.linuxfile2(2)chgrplinux02file2(3)  1、chmodu+xfile  2、chmodu=rwxfile  3、chmod721file2、基本权限ACL(1)使用get......
  • 10.24
    跟着模板敲代码(1)项目的架构 Dao为数据持久层,用于实现数据库的增删改查entity为javabean用于封装数据库中的对象servlet为前端数据的处理层jsp为前端页面现在来一个个实现 BaseDao用于链接mysql数据库publicclassBaseDao{static{try{C......
  • 每日总结10.24
    今天是一个充实的学习日,我早上开始了算法与数据结构的课程,这门课程涵盖了许多重要的计算机科学概念。今天,我们深入研究了树和生成树的概念,这是算法和数据结构中的关键主题。学习了树的基本结构和性质,以及如何使用树来解决各种计算问题。我还学到了一些巧妙的解题方法,这些方法在算......
  • 「Log」2023.10.24 小记
    序幕/尾声昨天跑了\(1000m\),晚上享受到了优质睡眠。虽说肌肉有点疼,但无压力起床,状态拉满。下楼之后感觉没想象中那么冷,大抵跟昨天莫名其妙的霾有关系。附近在装修,到处都是尘土,但天还是很蓝。\(\text{6:50}\):慵懒到校,整整博客,今天准备写写猪国杀。\(\text{7:30}\):模拟赛开题......
  • 10.24
    今天学习了使用mybatis通过注解的方式实现对数据库最基本的增删改查定义了一个Emp的类对象Emp.javapackagecom.itheima.mybatisdatabaseexample.pojo;importlombok.AllArgsConstructor;importlombok.Data;importlombok.NoArgsConstructor;importjava.time.LocalDat......