码迷,mamicode.com
首页 >  
搜索关键字:prepare    ( 1026个结果
centos7使用supermin制作centos7的docker镜像包
安装程序 yum install y supermin 创建目录 mkdir p /data/docker_image/centos7 cd /data/docker_image/centos7 准备要安装的软件包并保存在supermin.d目录下 supermin5 v prepare bash ...
分类:其他好文   时间:2020-02-07 16:33:28    阅读次数:128
pdo数据操作,3-4,0724
1 require 'connect.php'; 2 $linshi = $dbh->prepare('UPDATE `category` SET `name` = :name, `alias`=:alias WHERE `cate_id` = :cate_id '); 3 if($linshi-> ...
分类:其他好文   时间:2020-02-04 18:51:26    阅读次数:90
Java学习十四
学习内容: 1.Junit 一、Junit实例演示步骤 1.引入jar包 junit包需要引入hamcrest-core包,否则会报错 2.测试如下代码 1 package com.junit.test; 2 3 public class Calculator { 4 private static ...
分类:编程语言   时间:2020-01-31 15:48:03    阅读次数:89
PAT Advanced 1035 Password (20分)
To prepare for PAT, the judge sometimes has to generate random passwords for the users. The problem is that there are always some confusing passwords ...
分类:其他好文   时间:2020-01-28 22:59:57    阅读次数:77
PAT甲级——1035 Password (20分)
1035 Password (20分) To prepare for PAT, the judge sometimes has to generate random passwords for the users. The problem is that there are always some ...
分类:其他好文   时间:2020-01-24 00:29:37    阅读次数:109
选举协议paxos 协议 理解
获取一个Proposal ID n,为了保证Proposal ID唯一,可采用时间戳+Server ID生成; Proposer向所有Acceptors广播Prepare(n)请求; Acceptor比较n和minProposal,如果n>minProposal,minProposal=n,并且将 ...
分类:其他好文   时间:2020-01-22 12:34:43    阅读次数:94
Mybatis框架
1、Mybatis框架开发流程 1.1添加Mybatis依赖jar 1.2开发一个实体映射类 1.3开发一个sql映射文件 在src/main/resource下创建与当前表对应的SQL映射文件用于声明SQL语句 1.4开发Mybatis核心配置文件 在src/main/resources下创建My ...
分类:其他好文   时间:2020-01-21 19:56:17    阅读次数:80
java.io.IOException: Can't get Master Kerberos principal for use as renewer 错误解决
最近在集群中执行调度任务,或者是 在集群中执行 hadoop distcp 命令都会报这样的问题。 java.io.IOException: Can't get Master Kerberos principal for use as renewer- at org.apache.hadoop.ma ...
分类:编程语言   时间:2020-01-15 12:09:00    阅读次数:112
php之PDOStatement::execute数组参数带有键值会出错
当预处理的SQL语句是用问号占位符时,如果是用数组传参的,数组里不要带有键值,否则无法执行SQL。 出错的代码如下: $test = new PDODB(); $param=["d"=>"2020-1-13","e"=>2,"f"=>2,"g"=>2]; $sql1 = "insert into h ...
分类:编程语言   时间:2020-01-14 16:20:23    阅读次数:91
PDO中执行SQL语句的三种方法
在PDO中,我们可以使用三种方式来执行SQL语句,分别是 exec()方法,query方法,以及预处理语句prepare()和execute()方法~大理石构件来图加工 在上一篇文章《使用PDO构造函数连接数据库及DSN详解》中,我们介绍了如何使用构造函数连接数据库和DSN的详解,那么我们这篇文章跟 ...
分类:数据库   时间:2020-01-13 12:46:12    阅读次数:459
1026条   上一页 1 ... 8 9 10 11 12 ... 103 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!