JVM Languages
jdbcpy.txt
Associated article: A JDBC Wrapper In Python!
Tags: Web Development JVM Languages
Published source code accompanying the article by C. K. Tan in which he presents a Python- based framework that wraps around JDBC. Also see JDBCPY.ZIP.
A JDBC Wrapper--In Python!
by C. K. Tan
Listing One
PreparedStatement ins = null, upd = null, sel = null, del = null;
Connection con = DriverManager.getConnection(url, "mylogin", "mypasswd");
boolean commit = false;
try {
Calendar c = Calendar.getInstance();
c.clear();
...


