一、题目: 给定一个double类型的浮点数base和int类型的整数exponent。求base的exponent次方。 二、思路: 作弊思想 三、代码: ...
分类:
其他好文 时间:
2018-07-09 20:33:24
阅读次数:
191
下载扩展地址: 1、https://windows.php.net/downloads/pecl/releases/redis 2、https://pecl.php.net/package/redis 在ext目录中加入: php_redis.dll php_redis.pdb 这两个文件 php. ...
分类:
数据库 时间:
2018-07-08 20:36:24
阅读次数:
223
12c创建用户create user c##lyoo2 identified by oracle;12c用户授权SQL> grant resource,connect to c##abiao12c;SQL> show parameter db_create创建pdbSQL> create plugg ...
分类:
数据库 时间:
2018-06-14 21:07:53
阅读次数:
268
MySQL高级查询 高级查询 关键字书写顺序 关键字执行顺序select:投影结果 1 5 from:定位到表 2 1 where:分组前第一道过滤 3 2 group by:分组 4 3 having:分组后第二道过滤 5 4 order by:排序 6 6 limit: 最后 分页 *目的:为了 ...
分类:
数据库 时间:
2018-06-10 15:07:37
阅读次数:
170
sustiva.pdb PDB: 1FKO Create parameter and coordinate files for Sustiva 1. 加氢: 加氢完毕后把文件内所有“EFZ”换为“SUS”。 2.转换为mol2格式: Here the -i sustiva.pdb specifies ...
分类:
其他好文 时间:
2018-06-08 19:24:17
阅读次数:
367
Section 1: Preparing the PDB file Section 2: Computing partial charges and atom types for CRO Section 3: Preparing the residue library and force field ...
分类:
其他好文 时间:
2018-06-03 23:43:15
阅读次数:
729
调试Python有如下几种方式: 1 使用print语句 2 使用IDE的debuggers 3 使用命令行调试器pdb,这是Python的一个标准库,类似gdb 4 使用-i命令行选项。在使用命令行运行Python文件的时,可使用如下命令:python -i 文件名.py,这样就会进入交互模式,你 ...
分类:
编程语言 时间:
2018-06-02 18:38:36
阅读次数:
163
背景 我负责的一个Services(服务)出问题了,原因是一个 dll 内部逻辑出问题了; 在本地修改源码后,重新生成dll(Debug模式);然后将服务器中 dll 替换为最新,查看日志是否报错。 不幸的是,还报错,内容如下: 日志没有指出报错的具体位置!PS:UpdateQuantity_Eff ...
分类:
数据库 时间:
2018-05-31 21:10:08
阅读次数:
236
本文对Oracle 12c版本新特性CDB及PDB进行了介绍与说明,记录于此,供各位同学及自己参考研究。 ...
分类:
数据库 时间:
2018-05-29 14:06:58
阅读次数:
236
原文:监控目前所有连接SQL SERVER的用户信息 if object_id('p_getlinkinfo','P')is not null drop proc p_getlinkinfo go create proc p_getlinkinfo @dbname sysname=null, --要... ...
分类:
数据库 时间:
2018-05-29 01:43:47
阅读次数:
221