搜索结果
查询Tags标签: xiaoxiao,共有 4条记录-
MySQL新建用户并赋予权限:解决命令行与Navicat展示数据库不一致问题
1.创建新用户 xiaoxiao密码123456mysql> CREATE USER xiaoxiao@localhost IDENTIFIED BY 123456;2.问题:Navicat使用xiaoxiao链接,看不到新建的数据库testDB怎么办?//用户添加使用testDB权限 grant all privileges on testDB.* to xiaoxiao@localhost identified by…
2021/11/5 19:16:25 人评论 次浏览 -
MySQL新建用户并赋予权限:解决命令行与Navicat展示数据库不一致问题
1.创建新用户 xiaoxiao密码123456mysql> CREATE USER xiaoxiao@localhost IDENTIFIED BY 123456;2.问题:Navicat使用xiaoxiao链接,看不到新建的数据库testDB怎么办?//用户添加使用testDB权限 grant all privileges on testDB.* to xiaoxiao@localhost identified by…
2021/11/5 19:16:25 人评论 次浏览 -
java 类与对象的创建
1,新建Application类,作为程序的入口 package oop.demo02;public class Application {public static void main(String[] args) { //类,抽象的,需要实例化Student xiaoming = new Student();System.out.println("xiaoming.name:\t" + xiaoming.name);//xiaom…
2021/7/31 17:06:30 人评论 次浏览 -
java 类与对象的创建
1,新建Application类,作为程序的入口 package oop.demo02;public class Application {public static void main(String[] args) { //类,抽象的,需要实例化Student xiaoming = new Student();System.out.println("xiaoming.name:\t" + xiaoming.name);//xiaom…
2021/7/31 17:06:30 人评论 次浏览