摘要:
安装时出行这个错误 Environment variable: "PATH" 解决方法 1、找到你的安装包里的这个路径下的这两个文件 2、用文本方式打开 将里两个文件面所有的1023改成一个大的值(我改成了1523),这个值按理说只要比你报错的提示的那个实际值大于或等于就行。 (有可能只改一个就可以 阅读全文
摘要:
如有什么质疑的地方,希望可以和大家一起探讨,共同进步。 一、安装方法: 1.首先下载Navicat Premium和Oracle Database Oracle Database官网下载地址:https://www.oracle.com/technetwork/database/enterprise 阅读全文
摘要:
/// <summary> /// 串口初始化 /// </summary> private void OpenSerialPort() { //串口号、波特率、停止位 有好多,选择你适合你电脑的 //串口号 serialPort1.PortName = "COM1"; //波特率 serialPo 阅读全文
摘要:
IP:ipconfigIP地址侦测器:Nslookup显卡:dxdiag控制面板:control电话拨号:dialer木马捆绑工具,系统自带:iexpress本地用户和组:lusrmgr.msc鼠标属性:main.cpl声音:mmsys.cpl网络连接:ncpa.cpl电源选项:powercfg.c 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Data; using System.Da 阅读全文
摘要:
package com.ifruit.utils; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.Statement; public clas 阅读全文
摘要:
表操作 注释:空null ,不空not null ·创建表: create table 表名( 列名1 数据类型 可否空 列名2 数据类型 可否空 列名3 数据类型 可否空 ... ); ·表增加新列: alter table 表名 add 列名 数据类型 可否为空 ·表修改列: alter tab 阅读全文
摘要:
using System.Collections; using System.Collections.Generic; using UnityEngine; //思想:在短时间内在规定圆内随机震动对象位置,从而实现震动效果 public class CamZhengDong : MonoBehavi 阅读全文
摘要:
using System.Collections; using System.Collections.Generic; using UnityEngine; public class NewBehaviourScript : MonoBehaviour { //滚动速度 public float H 阅读全文
摘要:
//射线原点 [SerializField] Transform tr; //射线长度 [SerializField] float dis = 5; //射线停留时间 [SerializField] float t=0.1f // Use this for initialization void S 阅读全文