sherrysack关注 2017.10.24 13:02:25字数 76阅读 2,394 While I was trying to download wine1.7 on Ubuntu, after I add the related repository, and execute sudo a ...
分类:
Web程序 时间:
2020-06-23 13:44:59
阅读次数:
82
一、Django中使用原生SQL from django.db import connection cursor=connection.cursor() # 插入操作 cursor.execute("insert into hello_author(name) values('钱钟书')") # 更 ...
分类:
数据库 时间:
2020-06-22 20:56:32
阅读次数:
75
前言 1. 本系列文章基于 Tomcat9 2. 前置知识:servlet 定义 先来看看容器的定义,Tomcat 源码注释如下: /** * A <b>Container</b> is an object that can execute requests received from * a cl ...
分类:
其他好文 时间:
2020-06-22 13:00:55
阅读次数:
52
在pom文件加入 <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skipTests>true</skipTest ...
分类:
Web程序 时间:
2020-06-15 18:05:30
阅读次数:
118
import MySQLdb #查询数量 def Count(cur): count=cur.execute('select * from Student') print ('there has %s rows record' % count) #插入 def Insert(cur): sql = ...
分类:
数据库 时间:
2020-06-15 17:54:50
阅读次数:
78
可以利用selenium的 browser.execute_script('JS方法')来实现。举例如下: 想点击网页的登录按钮时,发现由于网页没有最大化导致元素隐藏定位失败,这里不用maximize_window(),我们用执行JS的方法来实现下。 由于网页没有被最大化,元素被隐藏: 具体执行步骤 ...
分类:
Web程序 时间:
2020-06-14 18:49:05
阅读次数:
111
[ERROR] Failed to execute goal on project activiti-bpmn-layout: Could not resolve dependencies for project org.activiti:activiti-bpmn-layout:jar:6.0.1 ...
分类:
编程语言 时间:
2020-06-14 13:11:17
阅读次数:
300
本节重点: pymysql的下载和使用 execute()之sql注入 增、删、改:conn.commit() 查:fetchone、fetchmany、fetchall 一、pymysql的下载和使用 之前我们都是通过MySQL自带的命令行客户端工具mysql来操作数据库,那如何在python程序 ...
分类:
数据库 时间:
2020-06-13 23:34:34
阅读次数:
94
练习过程中的随手记,很多问题也未深究,,简单问题可能直接贴改完之后的代码,..分享出来,若能帮助大家,意外乐趣 functions1.rs // functions1.rs // Make me compile! Execute `rustlings hint functions1` for hin ...
分类:
其他好文 时间:
2020-06-11 13:46:16
阅读次数:
45
https://dba.stackexchange.com/questions/84370/why-mysqldump-is-returning-with-error-1143-couldnt-execute-show-table-status ...
分类:
数据库 时间:
2020-06-10 09:35:52
阅读次数:
89