数据适配器对象(DataAdapter)

一、DataAdapter对象概述

        1、 DataAdapter是一个特殊的类,其作用是数据源与DataSet对象之间沟通的桥梁。                2、 DataAdapter提供了双向的数据传输机制

      (1) 在数据源上执行Select语句,把查询结果集传送到DataSet对象的数据表(DataTable)中。       (2)执行Insert、Update和Delete语句,将更改过的数据提取并更新回数据源。

二、DataAdapter对象的常用属性和常用方法

       1、 常用的创建SqlDataAdapter对象的语法格式

        SqlDataAdapter 对象名=new SqlDataAdapter(SqlStr,conn);

其中: SqlStr为Select查询语句或SqlCommand对象 , conn为SqlConnection对象。

         2、常用的属性

        3、常用的方法

(1)Fill方法:调用Fill方法会自动执行SelectCommand属性中提供的命令,获取结果集并填充数据集的DataTable对象。

        其本质是通过执行SelectCommand的Select语句查询数据库,返回DataReader对象,通过DataReader对象隐式地创建DataSet中的表,并填充DataSet中表行的数据。

(2)Update方法调用InsertCommand、UpdateCommand和DeleteCommand属性指定的SQL命令,将DataSet对象更新到相应的数据源。

         在Update方法中,逐行检查数据表每行的RowState属性值,根据不同的RowState属性,调用不同的Command命令更新数据库。DataAdapter对象更新数据库示例图如图所示。

 (3) DataTable对象    

        DataTable对象是内存中一个关系数据库表,可以独立创建也可以由DataAdapter来填充。      

 声明一个DataTable对象的语法格式如下所示:

         使用两条语句:

                DataTable 对象名 = new DataTable();

                对象名.TableName="数据表名";

        或  使用一条语句:

                DataTable 对象名 = new DataTable("数据表名");

        例如:创建数据表对象dtStu,代码如下:    

// 创建一个新的 DataTable 对象用于存储学生信息数据
DataTable dtStu = new DataTable();

// 设置 DataTable 的 TableName 属性为 "StuInfo",标识该 DataTable 中存储的是学生信息数据
dtStu.TableName = "StuInfo";

或者:

// 使用构造函数创建一个新的 DataTable 对象,并设置其 TableName 属性为 "StuInfo",用于存储学生信息数据
DataTable dtStu = new DataTable("StuInfo");

        一个DataTable对象创建后,通常需要调用DataAdapter的Fill()对其进行填充,使DataTable对象获得具体的数据集,而不再是一个空表对象。

调用DataAdapter的Fill()对datatable进行填充:
        SqlDataAdapter.Fill(DataTable对象); 

  DataTable对象的常用属性    

        DataTable对象的常用属性主要有Columns属性、Rows属性和DefaultVIew属性。

  1. Columns属性:获取DataTable对象中表的列集合。
  2. Rows属性:获取DataTable对象中表的行集合。
  3. NewRow()方法:创建一个与当前数据表有相同字段结构的数据行。
  4. Clear()方法:清除表中所有的数据。
  5. DefaultView属性:获取可能包括筛选视图或游标位置的表的自定义视图。
  6. DataSet属性:获取DataTable对象所属的DataSet对象。
  7. PrimaryKey属性:获取或设置数据表的主键。
  8. TableName属性:获取或设置数据表名。 

        4、SqlCommandBuilder 对象

        利用 SqlCommandBuilder 对象能够自动生成: InsertCommand 、UpdateCommand、 DeleteCommand。

定义语句:    

        SqlCommandBuilder builder = new SqlCommandBuilder(DataAdapter对象);

 

三、使用步骤

1、创建数据库连接对象。

2、利用数据库连接对象和Select语句创建SqlDataAdapter对象。

3、利用SqlCommandBuilder对象能够自动生成SqlDataAdapter对象的InsertCommand、UpdateCommand、DeleteCommand属性。    

        SqlCommandBuilder builder =new SqlCommandBuilder(DataAdapter对象);

4、使用SqlDataAdapter对象的Fill方法把Select语句的查询结果放在DataSet对象的一个数据表中或直接放在一个DataTable对象中。          

        SqlDataAdapter.Fill(DataTable对象);

5、对DataTable对象中的数据进行增、删、改操作。

6、修改完成后,通过SqlDataAdapter对象的Update方法将DataTable对象中的修改更新到数据库。              

         SqlDataAdapter.Update();

四、使用实例

        在前面的文章中,我们学习了使用记录表和datareader对象来实现数据库的显示,但是我们可以看到使用前两种方法之前都需要和数据库连接,但是如果我们想要实现离线连接数据库(即不使用myconnection.Open();),那么我们就需要使用DataAdapter对象。

        使用DataAdapter对象的时候,也需要Gridview控件的参与:

结果:

实现代码:

        protected void Button11_Click(object sender, EventArgs e)
        {
            // 设置数据库连接字符串
            myconnection.ConnectionString = sqlcon;

            // 定义 SQL 查询语句
            string sqlcmd = "select * from studentscore";

            // 创建 SqlDataAdapter 对象,并传入 SQL 查询语句和数据库连接对象
            SqlDataAdapter da = new SqlDataAdapter(sqlcmd, myconnection);

            // 创建 DataTable 对象
            DataTable dt = new DataTable();

            // 使用 SqlDataAdapter 填充 DataTable
            da.Fill(dt);

            // 将 DataTable 设置为 GridView 的数据源
            GridView2.DataSource = dt;

            // 绑定数据到 GridView
            GridView2.DataBind();
        }

如果想要实现,使用DataAdapter对象进行更新数据库,那么应该怎么做呢?

实现结果:

实现代码:
 

        protected void Button12_Click(object sender, EventArgs e)
        {
            // 设置数据库连接字符串
            myconnection.ConnectionString = sqlcon;

            // 定义 SQL 查询语句
            string sqlcmd = "select * from studentscore";

            // 创建一个 SqlDataAdapter 对象,用于执行 SQL 查询并将结果填充到 DataTable 中
            SqlDataAdapter da = new SqlDataAdapter(sqlcmd, myconnection);

            // 创建一个 DataTable 对象,用于存储查询结果
            DataTable dt = new DataTable();

            // 使用 SqlDataAdapter 填充 DataTable,从数据库中检索数据
            da.Fill(dt);

            // 使用 SqlCommandBuilder 自动为 SqlDataAdapter 生成 SQL 命令,用于更新数据库
            SqlCommandBuilder builder = new SqlCommandBuilder(da);

            // 创建一个新的 DataRow 对象用于存储新数据
            DataRow myrow = dt.NewRow();

            // 为新 DataRow 对象的每个列赋值
            myrow[0] = "4"; // 列索引为 0
            myrow[1] = TextBox3.Text; // 列索引为 1,从 TextBox3 中获取值
            myrow[2] = TextBox4.Text; // 列索引为 2,从 TextBox4 中获取值
            myrow[3] = TextBox5.Text; // 列索引为 3,从 TextBox5 中获取值

            // 将新行添加到 DataTable 中
            dt.Rows.Add(myrow);

            // 使用 SqlDataAdapter 更新数据库中的数据
            da.Update(dt);

            // 重定向到 webform1.aspx 页面
            Response.Redirect("webform1.aspx");
        }

五、补充(表格输出方式显示详细信息或者删除某条语句)

        前面我们使用select方式删除过某条语句,但是如果我们在运行的时候看到某条语句的时候,我们想要删除或者查看它的详细信息,我们应该如何实现呢?依旧使用上面的数据库。

在前面的显示中我们可以看到,只有显示数据库里的内容,而没有对他的操作,所以,我们想要实现对数据库的操作,我们首先需要多加名为操作的一列。直接在前一篇

数据读取对象(DataReader)-CSDN博客的二、DataReader的使用示例的基础上添加:

        查看详细信息或者删除的话,就可以直接跳转到另一个界面,这个界面也需要访问数据库,所以也需要配置参数。

添加之后的结果(这里删除了一个,忘记截图了)

然后点击第一条的查看详细信息:

删除的话,就直接就删除了,就在不删了。

webform1.aspx文件代码:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="deleteTable.aspx.cs" Inherits="WebApplication9.deleteTable" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
        <div>
            <br />
            <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Button" />
        </div>
    </form>
</body>
</html>

webform1.aspx.cs文件代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

using System.Data;
using System.Data.SqlClient;
using System.Configuration;

namespace WebApplication9
{
    public partial class deleteTable : System.Web.UI.Page
    {
        string sqlcon = ConfigurationManager.ConnectionStrings["studentcnnstring"].ToString();
        //然后建立链接对象

        SqlConnection myconnection = new SqlConnection();
        protected void Page_Load(object sender, EventArgs e)
        {
            myconnection.ConnectionString = sqlcon;
        }

        protected void Button1_Click(object sender, EventArgs e)
        {
            myconnection.Open();
            string sqlcmd = "select * from studentscore";
            SqlCommand mycommand = new SqlCommand(sqlcmd, myconnection);
            SqlDataReader myreader = mycommand.ExecuteReader();
            Response.Write("遍历数据:<br>");
            Response.Write("<table border=1px>");
            Response.Write("<tr>");//表示行

            for (int i = 0; i < myreader.FieldCount; i++)//使用FieldCount获取当前行中的列数
            {
                Response.Write("<td>" + myreader.GetName(i) + "</td>");//td表示列,使用GetName获取每一列的名称
            }
            Response.Write("<td>操作1</td>");//读完数据库中的数据名称之后,在表格中添加表头为操作的一列
            Response.Write("<td>操作2</td>");
            Response.Write("</tr>");
            //下面就是读数据库中的每一行内容,然后输出,按行读即read方法,然后使用FieldCount获取当前行中的列数,然后依次输出
            while (myreader.Read())
            {
                Response.Write("<tr>");
                for (int i = 0; i < myreader.FieldCount; i++)
                {
                    Response.Write("<td>" + myreader[i].ToString() + "</td>");
                }
                Response.Write("<td><a href='webform2.aspx?id=" + myreader.GetValue(0) + "'>查看详细信息</a></td>");
                Response.Write("<td><a href='webform2.aspx?delid=" + myreader.GetValue(0) + "'>删除</a></td>");
                Response.Write("</tr>");
                
            }
            Response.Write("</table>");
            myconnection.Close();

        }
    }
}

查看详细信息和删除之后的文件:

webform2.aspx文件代码:
 

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm2.aspx.cs" Inherits="WebApplication9.WebForm2" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title></title>
    <style type="text/css">
        .auto-style1 {
            width: 52%;
            height: 377px;
        }
        .auto-style2 {
            width: 106px;
        }
    </style>
</head>
<body>
    <form id="form1" runat="server">
        <div>
            <br />
            <table class="auto-style1">
                <tr>
                    <td class="auto-style2">id</td>
                    <td>
                        <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
                        <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
                    </td>
                </tr>
                <tr>
                    <td class="auto-style2">name</td>
                    <td>
                        <asp:Label ID="Label2" runat="server" Text="Label"></asp:Label>
                        <asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>
                    </td>
                </tr>
                <tr>
                    <td class="auto-style2">sex</td>
                    <td>
                        <asp:Label ID="Label3" runat="server" Text="Label"></asp:Label>
                        <asp:TextBox ID="TextBox3" runat="server"></asp:TextBox>
                    </td>
                </tr>
                <tr>
                    <td class="auto-style2">score</td>
                    <td>
                        <asp:Label ID="Label4" runat="server" Text="Label"></asp:Label>
                        <asp:TextBox ID="TextBox4" runat="server"></asp:TextBox>
                    </td>
                </tr>
            </table>
        </div>
    </form>
</body>
</html>

webform2.aspx.cs文件代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Data.SqlClient;
using System.Configuration;

namespace WebApplication9
{
    public partial class WebForm2 : System.Web.UI.Page
    {
        string sqlcon = ConfigurationManager.ConnectionStrings["studentcnnstring"].ToString();
        SqlConnection myconnection = new SqlConnection();

        protected void Page_Load(object sender, EventArgs e)
        {
            myconnection.ConnectionString = sqlcon;
            myconnection.Open();
            string id = Request.QueryString["id"];
            string Delid = Request.QueryString["delid"];


            //Response.Write("接收id为" + id);
            if (id != null)
            {
                string sqlcmd = "select * from studentscore where id=" + id;
                SqlCommand mycommand = new SqlCommand(sqlcmd, myconnection);
                SqlDataReader myreader = mycommand.ExecuteReader();

                while (myreader.Read())
                {
                    Label1.Text = myreader.GetValue(0).ToString();
                    Label2.Text = myreader.GetValue(1).ToString();
                    Label3.Text = myreader.GetValue(2).ToString();
                    Label4.Text = myreader.GetValue(3).ToString();
                    TextBox1.Text = myreader.GetValue(0).ToString();
                    TextBox2.Text = myreader.GetValue(1).ToString();
                    TextBox3.Text = myreader.GetValue(2).ToString();
                    TextBox4.Text = myreader.GetValue(3).ToString();
                }
                
                //下面注释掉的这是按照前面的表格方法显示的,但是往往不使用这种方法
                //Response.Write("<table border=1 width=800px>");
                //Response.Write("<tr>");
                //for (int i = 0; i < myreader.FieldCount; i++)
                //{
                //    Response.Write("<td>" + myreader.GetName(i) + "</td>");
                //}
                //Response.Write("</tr>");
                //while (myreader.Read())
                //{
                //    Response.Write("<tr>");
                //    for (int i = 0; i < myreader.FieldCount; i++)
                //    {
                //        Response.Write("<td>" + myreader.GetValue(i) + "</td>");
                //    }
                //    Response.Write("</tr>");
                //}

                //Response.Write("</table>");
            }
            if (Delid != null)
            {

                string sqlcmd = "delete from studentscore where id=" + Delid;
                SqlCommand mycommand = new SqlCommand(sqlcmd, myconnection);
                mycommand.ExecuteNonQuery();
                Response.Redirect("webform1.aspx");
            }
            myconnection.Close();
        }
    }
}

在上面的查看详细信息中,发现,我使用了两种控件,label和textbox控件, 这是因为label只能显示,而textbox可以实现修改,如果我感觉这个信息不合适,就直接在textbox中修改,然后直接更新,要怎么实现呢?

我本来想的是下面语句,但是无法实现:

        protected void Button1_Click(object sender, EventArgs e)
        {
            myconnection.Open();
            string id = TextBox1.Text ;
            string name = TextBox2.Text;
            string sex = TextBox3.Text;
            string score = TextBox4.Text;

            string sqlcmd = "update studentscore set name='" + name + "', sex='" + sex + "', score='" + score + "' where id='" + id + "'";
            //string sqlcmd = "insert into studentscore(name,sex,score,id) values('" + name + "', '" + sex + "', '" + score + "','" + id + "')";

            SqlCommand mycommand = new SqlCommand(sqlcmd, myconnection);
            //SqlDataReader myreader = mycommand.ExecuteReader();
            mycommand.ExecuteNonQuery();
            myconnection.Close();
        }

 然后,我就查看了一下整体的代码,发现,我在接受数据的时候,是在初始化状态下接受的,在这种情况下,显示的数据库永远是从上一个网站中传过来的,而不是更新后的,所以,我就在初始化状态下添加了一个判断语句,使用Ispostback方法,显示一次,后面显示的即为修改后的数据库。整体的代码如下:

webform1.aspx.cs文件代码不需要修改,只需要修改跳转过去的文件代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Data.SqlClient;
using System.Configuration;

namespace WebApplication9
{
    public partial class WebForm2 : System.Web.UI.Page
    {
        string sqlcon = ConfigurationManager.ConnectionStrings["studentcnnstring"].ToString();
        SqlConnection myconnection = new SqlConnection();

        protected void Page_Load(object sender, EventArgs e)
        {
            myconnection.ConnectionString = sqlcon;
            myconnection.Open();
            string id = Request.QueryString["id"];
            string Delid = Request.QueryString["delid"];


            //Response.Write("接收id为" + id);
            if (!IsPostBack)
            {
                if (id != null)
                {
                    string sqlcmd = "select * from studentscore where id=" + id;
                    SqlCommand mycommand = new SqlCommand(sqlcmd, myconnection);
                    SqlDataReader myreader = mycommand.ExecuteReader();

                    while (myreader.Read())
                    {
                        Label1.Text = myreader.GetValue(0).ToString();
                        Label2.Text = myreader.GetValue(1).ToString();
                        Label3.Text = myreader.GetValue(2).ToString();
                        Label4.Text = myreader.GetValue(3).ToString();
                        TextBox1.Text = myreader.GetValue(0).ToString();
                        TextBox2.Text = myreader.GetValue(1).ToString();
                        TextBox3.Text = myreader.GetValue(2).ToString();
                        TextBox4.Text = myreader.GetValue(3).ToString();
                    }

                    //Response.Write("<table border=1 width=800px>");
                    //Response.Write("<tr>");
                    //for (int i = 0; i < myreader.FieldCount; i++)
                    //{
                    //    Response.Write("<td>" + myreader.GetName(i) + "</td>");
                    //}
                    //Response.Write("</tr>");
                    //while (myreader.Read())
                    //{
                    //    Response.Write("<tr>");
                    //    for (int i = 0; i < myreader.FieldCount; i++)
                    //    {
                    //        Response.Write("<td>" + myreader.GetValue(i) + "</td>");
                    //    }
                    //    Response.Write("</tr>");
                    //}

                    //Response.Write("</table>");
                }
                if (Delid != null)
                {

                    string sqlcmd = "delete from studentscore where id=" + Delid;
                    SqlCommand mycommand = new SqlCommand(sqlcmd, myconnection);
                    mycommand.ExecuteNonQuery();
                    Response.Redirect("webform1.aspx");
                }

            }
            myconnection.Close();
        }

        protected void Button1_Click(object sender, EventArgs e)
        {
            myconnection.Open();
            string id = TextBox1.Text ;
            string name = TextBox2.Text;
            string sex = TextBox3.Text;
            string score = TextBox4.Text;

            string sqlcmd = "update studentscore set name='" + name + "', sex='" + sex + "', score='" + score + "' where id='" + id + "'";
            //string sqlcmd = "insert into studentscore(name,sex,score,id) values('" + name + "', '" + sex + "', '" + score + "','" + id + "')";

            SqlCommand mycommand = new SqlCommand(sqlcmd, myconnection);
            //SqlDataReader myreader = mycommand.ExecuteReader();
            mycommand.ExecuteNonQuery();
            myconnection.Close();
            Response.Redirect("webform1.aspx");
            //Response.Redirect("deleteTable.aspx");
        }
    }
}

成功实现修改。

好了,今天就先这样吧。。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:/a/545026.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

基于Spring Boot的入职匹配推荐系统设计与实现

基于Spring Boot的入职匹配推荐系统设计与实现 开发语言&#xff1a;Java框架&#xff1a;springbootJDK版本&#xff1a;JDK1.8数据库工具&#xff1a;Navicat11开发软件&#xff1a;eclipse/myeclipse/idea 系统部分展示 管理员登录界面&#xff0c;登录成功后进入到系统操…

STC89C52学习笔记(九)

STC89C52学习笔记&#xff08;九&#xff09; 综述&#xff1a;本文主要介绍了蜂鸣器、蜂鸣器如何使用以及如何利用蜂鸣器播放不同频率声音。 一、蜂鸣器 1.定义和作用 电信号→声音信号&#xff0c;常用来产生按键音和报警音。 2.分类 有源&#xff1a;自带振荡器&#…

设计模式面试题

概述 设计模式分类 创建型模式 用于描述“怎样创建对象”&#xff0c;主要特点是“将对象的创建与使用分离”。使用者不需要官族对象创建的细节。结构型模式 用于描述如何将类或对象按照某种布局组成更大的结构。行为型模式 用于描述类或对象之间怎样相互协作共同完成单个对象…

面试经典150题——二叉树的最大深度

1. 题目描述 ​ 2. 题目分析与解析 这个题目有过一定基础的都应该知道&#xff0c;采用递归解决问题&#xff0c;因为要求一个二叉树的深度&#xff08;也就是高度&#xff09;&#xff0c;其实上就是根节点的左子树和右子树中高度最高的那个。因此这个问题就可以拆解为&…

微服务之OpenFeign服务接口调用

一、概述 1.1简介 OpenFeign客户端是一个web声明式http远程调用工具&#xff0c;直接可以根据服务名称去注册中心拿到指定的服务IP集合&#xff0c;提供了接口和注解方式进行调用&#xff0c;内嵌集成了Ribbon本地负载均衡器。 Feign是一个声明性web服务客户端。它使编写web服…

BackTrader 中文文档(二十三)

原文&#xff1a;www.backtrader.com/ 基准测试 原文&#xff1a;www.backtrader.com/blog/posts/2016-07-22-benchmarking/benchmarking/ backtrader包括两种不同类型的对象&#xff0c;可以帮助跟踪&#xff1a; 观察者 分析器 问题 #89是关于添加针对资产的基准测试。这是…

[阅读笔记12][LLaVA-1.5]Improved Baselines with Visual Instruction Tuning

1.5版本是llava作者在23年10月提交的。 作者对原始的llava进行了四个很小的改进&#xff0c;之后就刷了11个数据集的sota。而且可以看到llava用于训练的数据量很小&#xff0c;与instructBLIP和通义千问比少多了。 然后这里就是llava1.5进行的四个小改进。 第一点是prompt明确短…

【Excel如何在表格中筛选重复的值之条件格式】

在使用excel进行统计时经常会遇到&#xff0c;数据统计出现重复的现象&#xff0c;为了确保数据的唯一性&#xff0c;可以用到条件格式筛选出重复值&#xff0c;以确保数据的正确性。 筛选重复值&#xff1a; 选中要筛选的范围&#xff0c;行或列或整个表选中【开始】-【条件…

vue快速入门(二十三)侦听器的简单写法与完整写法

注释很详细&#xff0c;直接上代码 上一篇 新增内容 侦听器简单写法侦听对象或属性侦听器完整写法侦听对象&#xff08;可选深度侦听&#xff09; 源码 <!DOCTYPE html> <html lang"en"><head><meta charset"UTF-8"><meta name…

Zookeeper(从入门到掌握)看完这一篇就够了

文章目录 一、初识 Zookeeper1.Zookeeper 概念2.Zookeeper 数据模型3.Zookeeper 服务端常用命令4.Zookeeper 客户端常用命令 二、ZooKeeper JavaAPI 操作1.Curator 介绍1.Curator API 常用操作&#xff08;1&#xff09;建立连接&#xff08;2&#xff09;添加节点&#xff08;…

C#版Facefusion ,换脸器和增强器

C#版Facefusion &#xff0c;换脸器和增强器 目录 说明 效果 项目 调用代码 说明 Facefusion是一款最新的开源AI视频/图片换脸项目。是原来ROOP的项目的延续。项目官方介绍只有一句话&#xff0c;下一代换脸器和增强器。 代码实现参考 https://github.com/facefusion/f…

AI天使汇联合150家顶级基金、战投,征集优秀AI创业项目

鉴于AI天使汇主办的2024年3月期优秀项目征集活动效果超出预期&#xff0c;3月活动最后TOP20路演者中已有多家快速拿到了TS。 路演活动质量受到了AI创业公司和基金/战投伙伴的高度评价&#xff0c;现在开始四月期活动报名! 本期征集活动联合的顶级基金和战投数量增加到了150家…

Shell脚本学习(一):Shell内置命令与Shell运算符

Shell内置命令 理解内置命令的含义。 内置命令介绍 Shell内置命令&#xff0c;就是由Bash Shell自身提供的命令&#xff0c;而不是文件系统中的可执行文件。 使用type 可以用来确定一个命令是否是内置命令&#xff1a; type 命令演示&#xff1a; 对于上述演示的两个命令来…

【我的代码生成器】生成React页面类

有了数据表的结构信息&#xff0c;就能生成React 的页面类&#xff0c;快捷方便。 生成界面如下&#xff1a; 生成的React FrmUser.js页面如下&#xff1a; 只需再写里面的操作逻辑代码。

链表创建的陷阱与细节

链表是线性表的一种&#xff0c;它在逻辑结构上是连续的&#xff0c;在物理结构上是非连续的。 也就是说链表在物理空间上是独立的&#xff0c;可能是东一块西一块的。如下顺序表和链表在内存空间上的对比&#xff1a; 而链表的每一块空间是如何产生联系实现在逻辑结构上是连续…

关于java中的线程池用法

目录 线程池的参数介绍 线程池的工作流程 使用Executors创建常见的线程池 池的思想&#xff0c;在计算机中是非常普遍的概念。顾名思义&#xff0c;池是将一个或多个任务提前创建好&#xff0c;放入容器中&#xff0c;当程序运行的时候直接取出使用&#xff0c;这个容器就叫…

Imagination APXM-6200 CPU:性能卓越,安全可信

随着消费类和工业应用行业的不断发展&#xff0c;对创新性能和效率的需求永不停歇&#xff0c;我们自豪地推出旗下 Catapult CPU 系列的第二款产品&#xff1a;Imagination APXM-6200 CPU 。这款 64 位的高效 RISC-V 应用处理器具有强大的 AI 功能及性能密度&#xff0c;能够为…

基于Java+SpringBoot3+vue3健身房管理系统设计与实现

博主介绍&#xff1a;✌全网粉丝5W&#xff0c;全栈开发工程师&#xff0c;从事多年软件开发&#xff0c;在大厂呆过。持有软件中级、六级等证书。可提供微服务项目搭建与毕业项目实战&#xff0c;博主也曾写过优秀论文&#xff0c;查重率极低&#xff0c;在这方面有丰富的经验…

使用openLayers报错Module parse failed: Unexpected token

引入OpenLayers时报错 JavaScript模块解析失败 在构建工具中配置 transpileDependencies 参数&#xff0c;因为 ol 依赖库基于一个目标环境不支持的 ES 版本撰写&#xff0c;将该依赖添加进 vue.config.js 中的 transpileDependencies 选项中 // including the package "…

ruoyi单体+react+antdesign

基于ruoyi vue和Ruoyi-React实现的快速开发工具。 源码地址&#xff1a;GitHub - hebian1994/ruoyi-react-single: use ruoyi to generage java backend code and reacr front end code 前端&#xff1a;基于ant-design-pro 后端&#xff1a;单体springboot项目(非cloud)mysq…