1:新建连接 2:Navicat报Navicat is not able to create OCI handles
3:分析原因本地oci与服务器版本不匹配,oci版本太低,连接不上
4:解决方法: 4.1:查看服务器Orcal的版本信息&…
代码参考如下:
using UnityEditor;
using UnityEditor.EditorTools;
using UnityEngine;[EditorTool("Roaming View Tool", typeof(SetRoamingViewCtrl))]
public class RoamingViewTool : EditorTool
{public override GUIContent toolbarIcon > Edi…
1.数据库 #建库 create database zhenqk charset utf8; use zhenqk; CREATE TABLE HR ( id int(6) NOT NULL AUTO_INCREMENT, name varchar(20) NOT NULL, age tinyint(4) DEFAULT 0, sex enum(男,女,默认) NOT NULL DEFAULT 默认, salary decimal(6,2) NOT NULL DEFAULT 3500.…