nonlinearthink / nonlinearthink.github.io

My Blog
http://nonlinearthink.github.io
0 stars 0 forks source link

彻底理解 JDBC | nonlinearthink's blog #3

Closed nonlinearthink closed 3 years ago

nonlinearthink commented 4 years ago

https://nonlinearthink.github.io/2020/06/27/jdbc-summary/

JDBC (Java Database Connectivity) ,属于 Java 应用编程中比较基础的一块,我们会从最基本的开始,由浅入深地解释 JDBC 中的各种问题。 连接数据库 驱动初始化 基于 Class.forName 的初始化 想要开始 JDBC 编程,第一步是需要把 数据库驱动程序 的代码加载进来。 可以利用 Class.forName 函数,它原本的功能是返回一个 类或者

wangtianyu0222 commented 4 years ago

test

def save_fig(fig_id, tight_layout=True, fig_extension="png", resolution=300): path = os.path.join(IMAGES_PATH, fig_id + "." + fig_extension) print("Saving figure", fig_id) if tight_layout: plt.tight_layout() plt.savefig(path, format=fig_extension, dpi=resolution)