读后笔记 -- Java核心技术(第11版 卷 II) Chapter5 数据库编程
摘要:5.1 JDBC API 1. JDBC (Java Database Connectivity) is an API for interacting with a database in Java. 2. Each database vendor produces a driver that tr
阅读全文
posted @
2023-02-24 14:17
bruce_he
阅读(54)
推荐(0) 编辑
sqlalchemy+pandas:错误 'OptionEngine' object has no attribute 'execute','str' object has no attribute '_execute_on_connection'
摘要:场景:使用 sqlalchemy+pandas 1. 'OptionEngine' object has no attribute 'execute' import pandas as pd from sqlalchemy import create_engine, text engine = cr
阅读全文
posted @
2023-02-12 09:12
bruce_he
阅读(7297)
推荐(0) 编辑
读后笔记 -- Java核心技术(第11版 卷 II) Chapter3 XML
摘要:3.1 XML Introduction An XML document is made up of elements. An element can have attributes (key/value pairs) and child nodes. Child nodes can be elem
阅读全文
posted @
2023-02-10 10:31
bruce_he
阅读(30)
推荐(0) 编辑
(转载)java中的四大输入:System.in, Scanner, InputStreamReader, BufferedReader的用法与区别
摘要:链接:https://blog.csdn.net/qq_36631076/article/details/77006007 Java 的四个输入法:BufferedReader、InputStreamReader、Scanner 和 System.in。 1 System.in System.in
阅读全文
posted @
2023-02-07 16:40
bruce_he
阅读(801)
推荐(0) 编辑
读后笔记 -- Python 全栈测试开发 Chapter12:pytest框架 + Allure 报告生成
摘要:12.1 pytest 框架 12.1.1 简介 1. 框架的使用程度:pytest > unittest > RF 框架 > 无框架的 关键字驱动 > 数据驱动 > 线性脚本 pytest 在线文档:https://docs.pytest.org/en/7.2.x/ 2. pytest 相比较于
阅读全文
posted @
2023-02-04 13:08
bruce_he
阅读(32)
推荐(0) 编辑