# 指针移动的单位都是以bytes/字节为单位# 只有一种情况特殊:# t模式下的read(n),n代表的是字符个数# with open("a.txt", mode="rt", encoding="utf-8") as f:# res = f.read(4)# print(res)# f.seek ...
分类:
编程语言 时间:
2021-06-25 17:13:05
阅读次数:
0
laravel 打印sql语句非常的麻烦而且不方便,所以就想弄一个sql日志来方便调试排除 首先到 EventServiceProvider.php (监听文件)里 赋值日志开关常数 define('SQL_LOG', env('SQL_LOG', false));然后到 $listen 里增加 S ...
分类:
数据库 时间:
2021-06-25 17:07:22
阅读次数:
0
Problem: Importing an Oracle 11g R2 Data Pump file containing an ArcSDE 10.x geodatabase encounters Oracle errors ORA-31693, ORA-02354, ORA-00600 Desc ...
分类:
其他好文 时间:
2021-06-24 18:01:26
阅读次数:
0
1、oracle中用户密码复杂度配置 1)查看参数 select limit from dba_profiles where resource_name='PASSWORD_VERIFY_FUNCTION' and profile in (select profile from dba_users ...
分类:
数据库 时间:
2021-06-24 17:35:08
阅读次数:
0
sqlplus / as sysdba 报错ORA-01012: not logged on 发生原因:关闭数据库是shutdown 后面没有接关闭参数中的任何一个。 nomal ————- —-所有连接都断开时才能关闭; transactional ———-等待事务结束后,主动断开连接; imme ...
分类:
其他好文 时间:
2021-06-21 20:45:57
阅读次数:
0
这个问题是因为需要在tnsnames.ora文件中进行一些相关配置,具体配置参见博文:https://www.cnblogs.com/mingforyou/p/7110459.html 最后环境变量必须要配置:相关路径按照你实际的路径进行设置即可 右击"我的电脑" - "属性" - "高级" - " ...
分类:
数据库 时间:
2021-06-20 18:50:33
阅读次数:
0
简单设置环境变量,以及密码 1.把mysql命令加入环境变量 [root@master01 ~]# vim /etc/profile.d/mysql.sh #!/bin/bash export MYSQL=/application/mysql export PATH=$PATH:$MYSQL/bin ...
分类:
数据库 时间:
2021-06-20 18:49:27
阅读次数:
0
s() is used for univariate smooths (section 5.3, p. 201), isotropic smooths of several variables (section 5.5, 214) and random effects (section 3.5.2, ...
分类:
其他好文 时间:
2021-06-19 19:29:15
阅读次数:
0
from turtle import *def moveto(x,y): penup() goto(x,y) pendown()def main(): setup(800, 600) speed(0) for radius in range(20, 200, 20): moveto(0, -radi ...
分类:
其他好文 时间:
2021-06-18 20:00:08
阅读次数:
0
常用的传感器有哪些 什么叫 传感器 微型化、数字化、智能化、多功能化、系统化、网络化。它是实现自动检测和自动控制的首要环节。传感器的存在和发展,让物体有了触觉、味觉和嗅觉等感官,让物体慢慢变得活了起来。通常根据其基本感知功能分为热敏元件、光敏元件、气敏元件、力敏元件、磁敏元件、湿敏元件、声敏元件、放 ...
分类:
其他好文 时间:
2021-06-16 18:00:28
阅读次数:
0