6、监测数据采集物联网应用开发步骤(5.2)

  1. 监测数据采集物联网应用开发步骤(5.1)

包含4个类数据库连接(com.zxy.db_Self.ConnectionPool_Self.py)、数据库操作类(com.zxy.db_Self.Db_Common_Self.py)、数据库管理类(com.zxy.db_Self.DBManager_Self.py)、数据库连接池类(com.zxy.db_Self.PooledConnection_Self.py)

据库连接(com.zxy.db_Self.ConnectionPool_Self.py

#! python3
# -*- coding: utf-8 -
'''
Created on 2023年08月28日
@author: zxyong 13738196011
'''import sqlite3,time,mysql.connector,threading
from com.zxy.z_debug import z_debug
from com.zxy.db_Self.PooledConnection_Self import PooledConnection_Self#监测数据采集物联网应用--数据库连接
class ConnectionPool_Self(z_debug):attJdbcDriver = ""attDbUrl = ""attDbUsername = ""attDbPassword = ""attInitialConnections = 5attIncrementalConnections = 2attMaxConnections = 10attPooledConnection_Selfs = []def __init__(self, inputJdbcDriver, inputDbUrl, inputDbUsername, inputDbPassword): self.attJdbcDriver = inputJdbcDriverif inputJdbcDriver == "org.sqlite.JDBC":self.attInitialConnections = 2self.attMaxConnections = 5self.attDbUrl = inputDbUrlself.attDbUsername = inputDbUsernameself.attDbPassword = inputDbPasswordtry:self.createPool()except Exception as e:if str(type(self)) == "<class 'type'>":self.debug_in(self,repr(e)+"=>"+str(e.__traceback__.tb_lineno))#打印异常信息else:self.debug_in(repr(e)+"=>"+str(e.__traceback__.tb_lineno))#打印异常信息finally:passdef createPool(self):if len(self.attPooledConnection_Selfs) == 0:lock = threading.Lock()if lock.acquire():self.createConnections(self.attInitialConnections) if str(type(self)) == "<class 'type'>":self.debug_in(self,"myself db create pool")#打印异常信息else:self.debug_in("myself db create pool")#打印异常信息lock.release()def createConnections(self, inputNumConnections):if self.attMaxConnections > 0 and len(self.attPooledConnection_Selfs) >= self.attMaxConnections:            if str(type(self)) == "<class 'type'>":self.debug_in(self,"myself db connections is max")#打印异常信息else:self.debug_in("myself db connections is max")#打印异常信息self.findFreeConnection()for iIndex in range(1,inputNumConnections):try:temCon = self.newConnection()temPolCon = PooledConnection_Self(temCon)self.attPooledConnection_Selfs.append(temPolCon)            except Exception as e:if str(type(self)) == "<class 'type'>":self.debug_in(self,repr(e)+"=>"+str(e.__traceback__.tb_lineno))#打印异常信息else:self.debug_in(repr(e)+"=>"+str(e.__traceback__.tb_lineno))#打印异常信息def newConnection(self):        if self.attJdbcDriver == "org.sqlite.JDBC":temConn = sqlite3.connect(self.attDbUrl,check_same_thread = False)return temConnelif self.attJdbcDriver == "com.mysql.jdbc.Driver":try:temConn = mysql.connector.Connect(host=self.attDbUrl.split(":")[0],user=self.attDbUsername,db=self.attDbUrl.split(":")[2],passwd=self.attDbPassword,port=self.attDbUrl.split(":")[1])return temConnexcept Exception as e:if str(type(self)) == "<class 'type'>":self.debug_in(self,repr(e)+"=>"+str(e.__traceback__.tb_lineno))#打印异常信息else:self.debug_in(repr(e)+"=>"+str(e.__traceback__.tb_lineno))#打印异常信息else:return Nonedef getConnection(self):temReturnResult = Nonelock = threading.Lock()if lock.acquire():if len(self.attPooledConnection_Selfs) == 0:return Noneelse:temReturnResult = self.getFreeConnection()    while self.attPooledConnection_Selfs is None:time.sleep(0.2)temReturnResult = self.getFreeConnection()lock.release()return temReturnResultdef getFreeConnection(self):temConn_self = self.findFreeConnection()if temConn_self is None:self.createConnections(self.attIncrementalConnections)temConn_self = self.findFreeConnection()if temConn_self is None:return Nonereturn temConn_selfdef findFreeConnection(self):temPc = Nonewhile temPc is None:for i in range(len(self.attPooledConnection_Selfs)):temPc = self.attPooledConnection_Selfs[i]if temPc.attBusy == False or temPc.attConnection is None:temPc.attBusy = Truetry:if temPc.attConnection is None :temPc.attConnection = self.newConnection()                        except Exception as e:del self.attPooledConnection_Selfs[i]i = i - 1if str(type(self)) == "<class 'type'>":self.debug_in(self,repr(e)+"=>"+str(e.__traceback__.tb_lineno))#打印异常信息else:self.debug_in(repr(e)+"=>"+str(e.__traceback__.tb_lineno))#打印异常信息continuebreakif temPc.attConnection is not None:breakelse:time.sleep(0.5)return temPcdef closeConnection(self,inputConn):try:if str(type(self)) == "<class 'type'>":self.debug_in(self,"the myself close db")#打印异常信息else:self.debug_in("the myself close db")#打印异常信息inputConn.close()except Exception as e:if str(type(self)) == "<class 'type'>":self.debug_in(self,repr(e)+"=>"+str(e.__traceback__.tb_lineno))#打印异常信息else:self.debug_in(repr(e)+"=>"+str(e.__traceback__.tb_lineno))#打印异常信息def returnConnection(self,inputConn):if len(self.attPooledConnection_Selfs) == 0:if str(type(self)) == "<class 'type'>":self.debug_in(self,"myself db  returnConnection!")#打印异常信息else:self.debug_in("myself db  returnConnection!")#打印异常信息return Nonefor i in range(len(self.attPooledConnection_Selfs)):temPConn = self.attPooledConnection_Selfs[i]            if temPConn.attConnection == inputConn and temPConn.attBusy:temPConn.attBusy = FalseBreak

数据库操作类(com.zxy.db_Self.Db_Common_Self.py

#! python3
# -*- coding: utf-8 -
'''
Created on 2023年08月28日
@author: zxyong 13738196011
'''from com.zxy.adminlog.UsAdmin_Log import UsAdmin_Log
from com.zxy.common import Com_Para
from com.zxy.db_Self.DBManager_Self import DBManager_Self
from com.zxy.z_debug import z_debug#监测数据采集物联网应用--数据库操作
class Db_Common_Self(z_debug):    attSqlException = ""attRs_out = NoneattConn_a = NoneattColumnNames = []def __init__(self):passdef Common_SqlNoCommit(self, inputStrSql):temRs = Nonetry:temDs = DBManager_Self()self.attConn_a = temDs.getConnection()if str(self.attConn_a.attConnection).find("sqlite3.Connection") != -1:Com_Para.Dblock1.acquire()temRs = self.attConn_a.executeQueryNoCommit(inputStrSql)         except Exception as e:            temLog = ""if str(type(self)) == "<class 'type'>":temLog = self.debug_info(self)+inputStrSql+"==>"+repr(e)self.debug_in(self,inputStrSql+"==>"+repr(e)+"=>"+str(e.__traceback__.tb_lineno))#打印异常信息else:temLog = self.debug_info()+inputStrSql+"==>"+repr(e)self.debug_in(inputStrSql+"==>"+repr(e)+"=>"+str(e.__traceback__.tb_lineno))#打印异常信息uL = UsAdmin_Log(Com_Para.ApplicationPath, temLog)uL.WriteLog()finally:temDs.returnConnection(self.attConn_a.attConnection)self.Close_Conn()if str(self.attConn_a.attConnection).find("sqlite3.Connection") != -1:Com_Para.Dblock1.release()return temRsdef Common_Sql(self, inputStrSql):temRs = Nonetry:temDs = DBManager_Self()self.attConn_a = temDs.getConnection()temRs = self.attConn_a.executeQuery(inputStrSql) self.attColumnNames = self.attConn_a.attColumnNames          except Exception as e:        temLog = ""if str(type(self)) == "<class 'type'>":temLog = self.debug_info(self)+inputStrSql+"==>"+repr(e)self.debug_in(self,inputStrSql+"==>"+repr(e)+"=>"+str(e.__traceback__.tb_lineno))#打印异常信息else:temLog = self.debug_info()+inputStrSql+"==>"+repr(e)self.debug_in(inputStrSql+"==>"+repr(e)+"=>"+str(e.__traceback__.tb_lineno))#打印异常信息uL = UsAdmin_Log(Com_Para.ApplicationPath, temLog)uL.WriteLog()finally:temDs.returnConnection(self.attConn_a.attConnection)self.Close_Conn()return temRsdef CommonExec_SqlRowID(self, inputStrSql):temIResult = -1try:temDs = DBManager_Self()self.attConn_a = temDs.getConnection()if str(self.attConn_a.attConnection).find("sqlite3.Connection") != -1:Com_Para.Dblock1.acquire()temIResult = self.attConn_a.executeUpdateRowID(inputStrSql)         except Exception as e:        temLog = ""if str(type(self)) == "<class 'type'>":temLog = self.debug_info(self)+inputStrSql+"==>"+repr(e)self.debug_in(self,inputStrSql+"==>"+repr(e)+"=>"+str(e.__traceback__.tb_lineno))#打印异常信息else:temLog = self.debug_info()+inputStrSql+"==>"+repr(e)self.debug_in(inputStrSql+"==>"+repr(e)+"=>"+str(e.__traceback__.tb_lineno))#打印异常信息uL = UsAdmin_Log(Com_Para.ApplicationPath, temLog)uL.WriteLog()temIResult = -1finally:temDs.returnConnection(self.attConn_a.attConnection)self.Close_Conn()if str(self.attConn_a.attConnection).find("sqlite3.Connection") != -1:Com_Para.Dblock1.release()return temIResultdef CommonExec_Sql(self, inputStrSql):temIResult = -1try:temDs = DBManager_Self()self.attConn_a = temDs.getConnection()if str(self.attConn_a.attConnection).find("sqlite3.Connection") != -1:Com_Para.Dblock1.acquire()temIResult = self.attConn_a.executeUpdate(inputStrSql)         except Exception as e:temLog = ""if str(type(self)) == "<class 'type'>":temLog = self.debug_info(self)+inputStrSql+"==>"+repr(e)self.debug_in(self,inputStrSql+"==>"+repr(e)+"=>"+str(e.__traceback__.tb_lineno))#打印异常信息else:temLog = self.debug_info()+inputStrSql+"==>"+repr(e)self.debug_in(inputStrSql+"==>"+repr(e)+"=>"+str(e.__traceback__.tb_lineno))#打印异常信息uL = UsAdmin_Log(Com_Para.ApplicationPath, temLog)uL.WriteLog()temIResult = -1finally:temDs.returnConnection(self.attConn_a.attConnection)self.Close_Conn()if str(self.attConn_a.attConnection).find("sqlite3.Connection") != -1:Com_Para.Dblock1.release()return temIResult    #     ProName 存储过程名 Parameters输入参数 ParamTypes参数类型String Int float Date
#     ParamOutName输出参数名 ParamOutType输出参数类型def Common_Sql_Proc(self,inputProName, inputParameters, inputParamTypes, inputParamOutName, inputParamOutType, inputTrn):try:    temDs = DBManager_Self()self.attConn_a = temDs.getConnection()        if str(self.attConn_a.attConnection).find("sqlite3.Connection") != -1:Com_Para.Dblock1.acquire()if inputTrn.attINF_TYPE == "1":self.attRs_out = self.attConn_a.ParamExecuteQuery(inputProName,inputParameters,inputParamTypes,inputParamOutName,inputParamOutType)else:self.attRs_out = self.attConn_a.ParamExecuteQuery(inputProName,inputParameters,inputParamTypes,inputParamOutName,inputParamOutType,inputTrn.attINF_EN_SQL)self.attColumnNames = self.attConn_a.attColumnNamesexcept Exception as e:self.attSqlException = "数据库操作出错请查看程序错误日志文件:" + inputProName + " "+ repr(e)        temLog = ""if str(type(self)) == "<class 'type'>":temLog = self.debug_info(self)+inputProName+"==>"+repr(e)self.debug_in(self,inputProName+"==>"+repr(e)+"=>"+str(e.__traceback__.tb_lineno))#打印异常信息else:temLog = self.debug_info()+inputProName+"==>"+repr(e)self.debug_in(inputProName+"==>"+repr(e)+"=>"+str(e.__traceback__.tb_lineno))#打印异常信息uL = UsAdmin_Log(Com_Para.ApplicationPath, temLog)uL.WriteLog()finally:temDs.returnConnection(self.attConn_a.attConnection)self.Close_Conn()if str(self.attConn_a.attConnection).find("sqlite3.Connection") != -1:Com_Para.Dblock1.release()return self.attRs_outdef Close_Conn(self):if not self.attConn_a.attConnection is None:pass

数据库管理类(com.zxy.db_Self.DBManager_Self.py

#! python3
# -*- coding: utf-8 -
'''
Created on 2023年08月28日
@author: zxyong 13738196011
'''from com.zxy.common import Com_Para
from com.zxy.common.DbConfigSelf import DbConfigSelf
from com.zxy.db_Self.ConnectionPool_Self import ConnectionPool_Self
from com.zxy.z_debug import z_debug#监测数据采集物联网应用--数据库管理
class DBManager_Self(z_debug):attConn = NoneattConnectionPool = Nonedef __init__(self):if Com_Para.url == "":DbConfigSelf.GetDbConfigSelfNew()self.attConnectionPool = ConnectionPool_Self(Com_Para.driverClassName,Com_Para.url,Com_Para.username,Com_Para.password)try:self.attConnectionPool.createPool()except Exception as e:if str(type(self)) == "<class 'type'>":self.debug_in(self,repr(e)+"=>"+str(e.__traceback__.tb_lineno))#打印异常信息else:self.debug_in(repr(e)+"=>"+str(e.__traceback__.tb_lineno))#打印异常信息finally:passdef getConnection(self):try:self.attConn = self.attConnectionPool.getConnection()except Exception as e:if str(type(self)) == "<class 'type'>":self.debug_in(self,repr(e)+"=>"+str(e.__traceback__.tb_lineno))#打印异常信息else:self.debug_in(repr(e)+"=>"+str(e.__traceback__.tb_lineno))#打印异常信息finally:return self.attConndef returnConnection(self,inputConn):return self.attConnectionPool.returnConnection(inputConn)@staticmethoddef closeConnectionPoolTimeOut(self):try:self.attConnectionPool.closeConnectionPoolTimeOut()except Exception as e:if str(type(self)) == "<class 'type'>":self.debug_in(self,repr(e)+"=>"+str(e.__traceback__.tb_lineno))#打印异常信息else:self.debug_in(repr(e)+"=>"+str(e.__traceback__.tb_lineno))#打印异常信息finally:Pass

数据库连接池类(com.zxy.db_Self.PooledConnection_Self.py

#! python3
# -*- coding: utf-8 -
'''
Created on 2023年08月28日
@author: zxyong 13738196011
'''from urllib.parse import unquotefrom com.zxy.adminlog.UsAdmin_Log import UsAdmin_Log
from com.zxy.common import Com_Para
from com.zxy.common.Com_Fun import Com_Fun
from com.zxy.z_debug import z_debug#监测数据采集物联网应用--数据库连接池
class PooledConnection_Self(z_debug):attUpdtime = 0attB_nocursor = TrueattConnection = NoneattBusy = FalseattColumnNames = []attlastrowid = -1def __init__(self, inputConn):self.attB_nocursor = Trueself.attConnection = inputConnself.attUpdtime = Com_Fun.getTimeLong()def executeQueryNoCommit(self, inputSql):temCursor = NonetemValues = Nonetry:self.attUpdtime = Com_Fun.getTimeLong()        # 建立cursortemCursor = self.attConnection.cursor()# 执行sql selecttemCursor.execute(inputSql)# 利用featchall获取数据temValues = temCursor.fetchall()self.attColumnNames = temCursor.descriptionself.attConnection.commit()except Exception as e:temLog = ""if str(type(self)) == "<class 'type'>":temLog = self.debug_info(self)+inputSql+"==>"+repr(e)self.debug_in(self,inputSql+"==>"+repr(e)+"=>"+str(e.__traceback__.tb_lineno))#打印异常信息else:temLog = self.debug_info()+inputSql+"==>"+repr(e)self.debug_in(inputSql+"==>"+repr(e)+"=>"+str(e.__traceback__.tb_lineno))#打印异常信息uL = UsAdmin_Log(Com_Para.ApplicationPath, temLog)uL.WriteLog()finally:if not temCursor is None:temCursor.close()return temValuesdef executeQuery(self, inputSql):temCursor = NonetemValues = Nonetry:self.attUpdtime = Com_Fun.getTimeLong()        # 建立cursortemCursor = self.attConnection.cursor()# 执行sql selecttemCursor.execute(inputSql)# 利用featchall获取数据temValues = temCursor.fetchall()self.attColumnNames = temCursor.descriptionif inputSql.lower().find("insert into") == 0 or inputSql.lower().find("update ") == 0 or inputSql.lower().find("delete ") == 0:self.attConnection.commit()except Exception as e:temLog = ""if str(type(self)) == "<class 'type'>":temLog = self.debug_info(self)+inputSql+"==>"+repr(e)self.debug_in(self,inputSql+"==>"+repr(e)+"=>"+str(e.__traceback__.tb_lineno))#打印异常信息else:temLog = self.debug_info()+inputSql+"==>"+repr(e)self.debug_in(inputSql+"==>"+repr(e)+"=>"+str(e.__traceback__.tb_lineno))#打印异常信息uL = UsAdmin_Log(Com_Para.ApplicationPath, temLog)uL.WriteLog()finally:if not temCursor is None:temCursor.close()return temValuesdef executeUpdateRowID(self, inputSql):temResult = -1temCursor = Nonetry:self.attUpdtime = Com_Fun.getTimeLong()        # 建立cursortemCursor = self.attConnection.cursor()# 执行sql insert update delete ttemCursor.execute(inputSql)temResult = temCursor.lastrowidself.attConnection.commit()except Exception as e:temLog = ""if str(type(self)) == "<class 'type'>":temLog = self.debug_info(self)+inputSql+"==>"+repr(e)self.debug_in(self,inputSql+"==>"+repr(e)+"=>"+str(e.__traceback__.tb_lineno))#打印异常信息else:temLog = self.debug_info()+inputSql+"==>"+repr(e)self.debug_in(inputSql+"==>"+repr(e)+"=>"+str(e.__traceback__.tb_lineno))#打印异常信息uL = UsAdmin_Log(Com_Para.ApplicationPath, temLog)uL.WriteLog()finally:if not temCursor:temCursor.close()return temResultdef executeUpdate(self, inputSql):temResult = -1temCursor = Nonetry:self.attUpdtime = Com_Fun.getTimeLong()        # 建立cursortemCursor = self.attConnection.cursor()# 执行sql insert update delete ttemCursor.execute(inputSql)temResult = temCursor.rowcountself.attConnection.commit()except Exception as e:temLog = ""if str(type(self)) == "<class 'type'>":temLog = self.debug_info(self)+inputSql+"==>"+repr(e)self.debug_in(self,inputSql+"==>"+repr(e)+"=>"+str(e.__traceback__.tb_lineno))#打印异常信息else:temLog = self.debug_info()+inputSql+"==>"+repr(e)self.debug_in(inputSql+"==>"+repr(e)+"=>"+str(e.__traceback__.tb_lineno))#打印异常信息uL = UsAdmin_Log(Com_Para.ApplicationPath, temLog)uL.WriteLog()finally:if not temCursor:temCursor.close()return temResultdef ParamExecuteQuery(self,inputProName, inputParameters, inputParamTypes, inputParamOutName, inputParamOutType, inputStrSql):self.attUpdtime = Com_Fun.getTimeLong()temValues = None# 建立cursortemCursor = self.attConnection.cursor()if len(inputParameters) == len(inputParamTypes) and len(inputParamOutName) == len(inputParamOutType):i = 0for temParamTypes in inputParamTypes:if temParamTypes == "LIST":j = 0temStr_V = ""for iIn in temParamTypes.split(","):if j != 0:temStr_V += ","temStr_V += "?"j += 1                    inputStrSql = inputStrSql.replace("@\\?",temStr_V,1)if temParamTypes.upper() == "STRING":inputParameters[i] = inputParameters[i]#Com_Fun.py_urldecode(inputParameters[i])#unquote(inputParameters[i],Com_Para.U_CODE)passelif temParamTypes.upper() == "INT":inputParameters[i] = int(inputParameters[i])passelif temParamTypes.upper() == "FLOAT":inputParameters[i] = float(inputParameters[i])passelif temParamTypes.upper() == "DATE":inputParameters[i] = unquote(inputParameters[i].replace("+"," "),Com_Para.U_CODE)passelif temParamTypes.upper() == "LIST":passelif temParamTypes.upper() == "LIKESTRING":inputParameters[i] = unquote(inputParameters[i],Com_Para.U_CODE)passi += 1if inputStrSql.upper().strip().find("INSERT INTO") == 0 or inputStrSql.upper().strip().find("UPDATE") == 0:# 执行sql selectiCount = temCursor.execute(inputStrSql,inputParameters)self.attlastrowid = temCursor.lastrowidif iCount.rowcount != -1:# 执行sql insert update delete ttemCursor.execute("select '1' as 's_result','成功,"+str(iCount.rowcount)+"' as 'error_desc'")else:temCursor.execute("select '0' as 's_result','失败' as 'error_desc'")# 利用featchall获取数据temValues = temCursor.fetchall()self.attColumnNames = temCursor.descriptionself.attConnection.commit()elif inputStrSql.upper().strip().find("DELETE") == 0:if inputStrSql.upper().strip().find(";") != -1:iCount = Nonefor strSqls in inputStrSql.split(";"):             # 执行多个sqliCount = temCursor.execute(strSqls)if iCount.rowcount != -1:# 执行sql insert update delete ttemCursor.execute("select '1' as 's_result','成功' as 'error_desc'")else:temCursor.execute("select '0' as 's_result','失败' as 'error_desc'")# 利用featchall获取数据temValues = temCursor.fetchall()self.attColumnNames = temCursor.descriptionself.attConnection.commit()else:# 执行sql selectiCount = temCursor.execute(inputStrSql,inputParameters)if iCount.rowcount != -1:# 执行sql insert update delete ttemCursor.execute("select '1' as 's_result','成功' as 'error_desc'")else:temCursor.execute("select '0' as 's_result','失败' as 'error_desc'")# 利用featchall获取数据temValues = temCursor.fetchall()self.attColumnNames = temCursor.descriptionself.attConnection.commit()elif inputStrSql.upper().strip().find("SELECT") == 0:iCount = temCursor.execute(inputStrSql,inputParameters)# 利用featchall获取数据temValues = temCursor.fetchall()self.attColumnNames = temCursor.descriptionself.attConnection.commit()return temValues
  1. 监测数据采集物联网应用开发步骤(5.3)

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

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

华为云Stack的学习(二)

三、华为云Stack产品组件 FunsionSphere CPS 提供云平台的基础管理和业务资源&#xff08;包括计算资源和存储资源&#xff09;。采用物理服务器方式部署在管理节点。可以做集群的配置&#xff0c;扩容和运维管理。 Service OM 提供云服务的运维能力&#xff0c;采用虚拟化方…

数据结构--树4.2.3(线索二叉树)

利用中序遍历可以解决二叉树中空出来的内存&#xff0c;以及前驱后继的问题。 lchildltagdatartagrchild ——ltag为0时指向该结点的左孩子&#xff0c;为1时指向该结点的前驱。 ——rtag为0时指向该结点的有孩子&#xff0c;为1时指向该结点的后继。 #include <stdio.h…

数字孪生:重塑制造、医疗和能源等领域的未来

数字孪生技术&#xff0c;作为虚拟仿真的重要领域&#xff0c;正以其强大的能力在各个行业中创造前所未有的创新。本文带大家一起深入探讨数字孪生技术在不同领域的广泛应用场景&#xff0c;展示其在实现效率、可靠性和智能化方面的积极影响。 制造业与工业领域 数字孪生技术在…

MyBatis分页插件PageHelper的使用及MyBatis的特殊符号---详细介绍

一&#xff0c;分页的概念 分页是一种将大量数据或内容分割成多个页面以便逐页显示的方式。在分页中&#xff0c;数据被分割成一定数量的页&#xff0c;每页显示一部分数据或内容&#xff0c;用户可以通过翻页或跳分页是一种将大量数据或内容分割成多个页面以便逐页显示的方式。…

MATLAB算法实战应用案例精讲-【概念篇】构建数据指标方法(补充篇)

前言 数据指标体系是指在数据分析领域中,为了评估和量化业务或项目的表现而建立的一组指标。这些指标可以用于监测和追踪业务或项目的发展情况,以便在需要时进行调整和改进。 数据指标体系通常包括多个方面,例如业务目标、数据采集、数据分析和报告等。在建立数据指标体系…

JavaScript—DOM(文档对象模型)

目录 DOM是什么&#xff1f; DOM有什么作用&#xff1f; 一、事件 理解事件 事件怎么写&#xff08;要做什么就写什么&#xff09;&#xff1f; 实战演练 1、页面加载完毕以后&#xff0c;打印一句话 2、如果有一个a标签&#xff0c;并给其添加一个点击事件 3、事件默…

1、监测数据采集物联网应用开发步骤(1)

项目介绍 本文章编写目的针对下图中《。。。解决方案》所涉及的开发资料&#xff1b; 监测数据采集物联网应用解决方案_yong427的博客-CSDN博客 开发步骤实现从0开始搭建软件框架&#xff0c;该开发步骤基于python3.0语言及相关工具实现&#xff0c;阅读本文章之前请先初步百…

React中的flushSync与Vue中的nextTick的比较

React中的flushSync与Vue中的nextTick是两种用于处理异步更新的机制。它们在React和Vue这两个流行的前端框架中起着重要的作用。 首先&#xff0c;让我们来看看flushSync。在React中&#xff0c;当需要更新UI时&#xff0c;React会将更新操作放入一个队列中&#xff0c;然后异…

特斯拉启动墨西哥建厂计划,引发台厂竞逐 | 百能云芯

特斯拉&#xff08;Tesla&#xff09;在墨西哥新工厂计划备受瞩目&#xff0c;据外媒报道&#xff0c;墨西哥的超级工厂似乎正在迈出实质性的步伐。包括鸿海集团、广达&#xff08;Foxconn&#xff09;、和大在墨西哥和美墨边境都计划扩大电动车零配件生产基地。 市场对特斯拉在…

LeetCode-406-根据身高重建队列

题目描述&#xff1a; 假设有打乱顺序的一群人站成一个队列&#xff0c;数组 people 表示队列中一些人的属性&#xff08;不一定按顺序&#xff09;。每个 people[i] [hi, ki] 表示第 i 个人的身高为 hi &#xff0c;前面 正好 有 ki 个身高大于或等于 hi 的人。 请你重新构造…

MySQL中的free链表,flush链表,LRU链表

一、free链表 1、概述 free链表是一个双向链表数据结构&#xff0c;这个free链表里&#xff0c;每个节点就是一个空闲的缓存页的描述数据块的地址&#xff0c;也就是说&#xff0c;只要你一个缓存页是空闲的&#xff0c;那么他的描述数据块就会被放入这个free链表中。 刚开始数…

Django连接多个数据库

初衷 为了让不同业务的数据分离&#xff0c;落到不同的库&#xff0c;使用django连接多个数据库。 设置 # settings.py DATABASES {"default": {},"users": {"NAME": "user_data","ENGINE": "django.db.backends.m…

Markdown 扩展语法练习

风无痕 August 26, 2023 Markdown 指南中文版 Markdown 入门指南Markdown 基本语法Markdown 扩展语法Markdown 基本语法练习Markdown 扩展语法练习 代码 <h3 id"table">表格</h3>| Syntax | Description | | --- | --- | | Header | Title | | Paragrap…

【高阶数据结构】map和set的介绍和使用 {关联式容器;键值对;map和set;multimap和multiset;OJ练习}

map和set的介绍和使用 一、关联式容器 关联式容器和序列式容器是C STL中的两种不同类型的容器。 关联式容器是基于键值对的容器&#xff0c;其中每个元素都有一个唯一的键值&#xff0c;可以通过键值来访问元素。关联式容器包括set、multiset、map和multimap。 序列式容器是…

单核cpu是怎么处理多线程的

首先&#xff0c;要先了解几个概念&#xff1a; 1、线程是CPU调度和分配的基本单位。 2、进程是操作系统进行资源分配&#xff08;包括cpu、内存、磁盘IO等&#xff09;的最小单位 。 3、一个进程可以包括多个线程。 4、CPU的时间片是由计算机的操作系统OS里的调度器分配的. …

NFTScan | 08.21~08.27 NFT 市场热点汇总

欢迎来到由 NFT 基础设施 NFTScan 出品的 NFT 生态热点事件每周汇总。周期&#xff1a;2023.08.21~ 2023.08.27 NFT Hot News 01/ NFT 品牌体验平台 Recur 将于 11 月 16 日彻底关闭&#xff0c;此前曾获 5000 万美元融资 8 月 21 日&#xff0c;NFT 品牌体验平台 Recur 在 X…

Oracle创建控制列表ACL(Access Control List)

Oracle创建控制列表ACL&#xff08;Access Control List&#xff09; Oracle ACL简介一、先登陆163邮箱设置开启SMTP。二、Oracle ACL控制列表处理&#xff08;一&#xff09;创建ACL&#xff08;create_acl&#xff09;&#xff08;二&#xff09;添加ACL权限&#xff08;add_…

【算法专题突破】双指针 - 盛最多水的容器(4)

目录 1. 题目解析 2. 算法原理 3. 代码编写 写在最后&#xff1a; 1. 题目解析 题目链接&#xff1a;11. 盛最多水的容器 - 力扣&#xff08;Leetcode&#xff09; 这道题目也不难理解&#xff0c; 两边的柱子的盛水量是根据短的那边的柱子决定的&#xff0c; 而盛水量…

开源项目的测试和质量保证

&#x1f337;&#x1f341; 博主猫头虎 带您 Go to New World.✨&#x1f341; &#x1f984; 博客首页——猫头虎的博客&#x1f390; &#x1f433;《面试题大全专栏》 文章图文并茂&#x1f995;生动形象&#x1f996;简单易学&#xff01;欢迎大家来踩踩~&#x1f33a; &a…

世纪互联收入增长放缓,低于华尔街预期,全年业绩指引令投资者失望

来源&#xff1a;猛兽财经 作者&#xff1a;猛兽财经 全年业绩指引令投资者失望 世纪互联&#xff08;VNET&#xff09;在发布了第二季度喜忧参半的财务业绩后&#xff0c;依然坚持了此前发布的2023财年业绩指引。 财报显示&#xff0c;虽然世纪互联第二季度的收入同比增长了6…