2021年2月22日
摘要: package shang.config; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Bean; import org.sp 阅读全文
posted @ 2021-02-22 12:55 湖北笨笨 阅读(246) 评论(0) 推荐(0) 编辑
  2018年4月23日
摘要: 4.1查询用户及用户购买的商品 SQL语句如下: /****** Script for SelectTopNRows command from SSMS ******/ SELECT o.* ,u.username ,u.sex ,u.address ,o2.id orderdetail_id ,o 阅读全文
posted @ 2018-04-23 15:33 湖北笨笨 阅读(121) 评论(0) 推荐(0) 编辑
  2018年4月13日
摘要: using System;using System.Collections.Generic;using System.Data;using System.IO;using System.Linq;using System.Threading;using System.Threading.Tasks; 阅读全文
posted @ 2018-04-13 16:54 湖北笨笨 阅读(135) 评论(0) 推荐(0) 编辑
  2018年4月11日
摘要: oracle创建新用户 1.首先我们可以用scott用户以sysdba的身份登录oracle. conn scott/tiger as sysdba 2.然后我就可以来创建用户了. create user shang identified by shang; 3.修改用户的密码. alter use 阅读全文
posted @ 2018-04-11 10:30 湖北笨笨 阅读(123) 评论(0) 推荐(0) 编辑