Stella981 Stella981
4年前
PhotoShop脚本指南
Photoshop脚本语言Photoshop支持三种脚本语言:AppleScript,VBScript,JavaScript。其中AppleScript为苹果系统,VBScript为Windows操作系统,JavaScript兼容苹果和Windows操作系统。!(https://oscimg.oschina.net/oscnet/up2
Stella981 Stella981
4年前
PHP and MySQL Web Development (PHP和MySQL Web开发)第五版 免积分下载
!(https://static.oschina.net/uploads/img/201901/06114944_HVje.jpg)本书描述使用php和mysql构建数据库驱动web应用程序的最终指南
Stella981 Stella981
4年前
SpringBoot持久层技术
一、Springboot整合mybatismaven中添加对数据库与mybatis的依赖1<dependencies2<dependency3<groupIdorg.springframework.boot</groupId4<artifactId
Easter79 Easter79
4年前
SpringBoot持久层技术
一、Springboot整合mybatismaven中添加对数据库与mybatis的依赖1<dependencies2<dependency3<groupIdorg.springframework.boot</groupId4<artifactId
Wesley13 Wesley13
4年前
mysql用户以及用户授权
1.1创建mysql用户mysqlcreateusertestidentifiedby'test';1.2为用户授权后面不加identified。grantselectontest.\totest@localhost;1.3查看MYSQL数据库中所有用户selectdistinctconcat('User:
Stella981 Stella981
4年前
Android实现搜索功能并本地保存搜索历史记录
第一步:创建SQLite数据库RecordSQLiteOpenHelper.javapackage com.mobile.android.yilone.sqlite;import android.content.Context;import android.database.sqlite.SQLiteDatabase
Wesley13 Wesley13
4年前
Java 学习笔记 三
一、Druid的简单使用1try{2//1.创建Druid数据源对象3DruidDataSourcedataSourcenewDruidDataSource();45//2.设置数据库连接信息6
Stella981 Stella981
4年前
PostgreSQL死锁进程及慢查询处理
1、死锁进程查看:SELECTFROMpg_stat_activityWHEREdatname'数据库名称'andwaitingtrue;pid进程id。2、慢查询SQL:selectdatname,pid,usename,application_name,client_addr,client
Stella981 Stella981
4年前
Linux设置以root用户开机自动登录桌面
目录Ubuntu18.04系统下设置Redhat7.6系统下设置Ubuntu18.04系统下设置1、允许使用root用户登录桌面  Ubuntu默认不允许使用root用户登录桌面的,首先需要进行如下配置  编辑/
linbojue linbojue
1个月前
C++的动态内存分配:从对象生命周期到智能管理
C的动态内存分配:从对象生命周期到智能管理C作为面向对象的编程语言,其动态内存分配机制在C语言“原始内存操作”的基础上,增加了对对象生命周期的深度管理——不仅要分配/释放内存,还要自动调用对象的构造函数(初始化资源)和析构函数(清理资源)。这种设计