一、PreparedStatement接口 1.java.sql.PraparedStatement接口继承并扩展了Statement接口,用于执行动态的SQL语句,即包含参数的SQL语句。 PraparedStatement ps = connection.preparedStatement("s ...
                            
                            
                                分类:
编程语言   时间:
2020-07-27 09:18:47   
                                阅读次数:
68
                             
                    
                        
                            
                            
                                    整个MySQL Server由以下组成 Connection Pool : 连接池组件 Management Services & Utilities : 管理服务和工具组件 SQL Interface : SQL接口组件 Parser : 查询分析器组件 Optimizer : 优化器组件 Cac ...
                            
                            
                                分类:
数据库   时间:
2020-07-26 23:12:40   
                                阅读次数:
81
                             
                    
                        
                            
                            
                                input { stdin { } jdbc { # mysql 数据库链接 jdbc_connection_string => "jdbc:mysql:localhost/database?characterEncoding=utf8" # 用户名和密码 jdbc_user => "xxx" jd ...
                            
                            
                                分类:
其他好文   时间:
2020-07-26 19:44:44   
                                阅读次数:
109
                             
                    
                        
                            
                            
                                    具体看这个网址里:有通用的如platformName等,还有安卓和ios设备特有的一些参数 http://appium.io/docs/cn/writing-running-appium/caps/ from appium import webdriver # 用字典来存储appium服务器的启动参 ...
                            
                            
                                分类:
移动开发   时间:
2020-07-26 00:29:02   
                                阅读次数:
89
                             
                    
                        
                            
                            
                                    /* http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 License: none (public domain) */ html, body, div, span, applet, object, iframe, h1, h2, h ...
                            
                            
                                分类:
Web程序   时间:
2020-07-26 00:16:30   
                                阅读次数:
118
                             
                    
                        
                            
                            
                                删除代理即可。 具体操作如下: 1. git config --global --list 查看git配置 发现其中有 http.https.XXXXXX.proxy 和 https.https.XXXXXX.proxy配置 2.git config --global --unset http.ht ...
                            
                            
                                分类:
其他好文   时间:
2020-07-26 00:07:03   
                                阅读次数:
249
                             
                    
                        
                            
                            
                                    首先,数组和集合的区别: 数组是大小固定的 集合可以存储和操作数目不固定的一组数据,集合只能存放引用类型的的数据,不能存放基本数据类型 特性 List 允许重复 有序 继承自Connection Set 不允许重复 无序 继承自Connection Map 键值对 区别与List和Set,既没有继承 ...
                            
                            
                                分类:
编程语言   时间:
2020-07-25 11:30:48   
                                阅读次数:
78
                             
                    
                        
                            
                            
                                    tput sc ##记录光标位置 tput cup x y ###移动光标至x列y行 tput rc ##返回光标位置 tput civis ##隐藏光标 tput cnorm ## 显示光标 tput setaf ColorNumber## 设置前景色 tput setab ColorNumber ...
                            
                            
                                分类:
系统相关   时间:
2020-07-25 09:18:53   
                                阅读次数:
107
                             
                    
                        
                            
                            
                                1.Account locked due to failed logins 通过root用户或root权限进行查看与修改 pam_tally2 --user=test #查看错误了几次 pam_tally2 --user=test --reset #重置 ...
                            
                            
                                分类:
系统相关   时间:
2020-07-23 16:13:40   
                                阅读次数:
75
                             
                    
                        
                            
                            
                                git reset --soft HEAD^ //用于撤销git commit的内容 git cherry-pick --abort //用于取消从其他分支clone的修改 git stash //缓存当前修改,用于暂时忽略当前修改,提交其他修改 git stash pop //还原stash的修改 ...
                            
                            
                                分类:
其他好文   时间:
2020-07-23 15:48:02   
                                阅读次数:
69