Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1)

Delta Between Two Patch Sets: src/com/ziclix/python/sql/PyCursor.java

Issue 2888: __findattr__ refactor (Closed) SVN Base: https://jython.svn.sourceforge.net/svnroot/jython/branches/asm
Left Patch Set: Created 1 year, 2 months ago
Right Patch Set: This is the actually commited patch (on r5155), in case you have more comments Created 1 year, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
LEFTRIGHT
1 1
2 /* 2 /*
3 * Jython Database Specification API 2.0 3 * Jython Database Specification API 2.0
4 * 4 *
5 * $Id$ 5 * $Id$
6 * 6 *
7 * Copyright (c) 2001 brian zimmer <bzimmer@ziclix.com> 7 * Copyright (c) 2001 brian zimmer <bzimmer@ziclix.com>
8 * 8 *
9 */ 9 */
10 package com.ziclix.python.sql; 10 package com.ziclix.python.sql;
(...skipping 972 matching lines...) Expand 10 before | Expand all | Expand 10 after
983 cursor.callproc(sql, params, bindings, maxrows); 983 cursor.callproc(sql, params, bindings, maxrows);
984 return Py.None; 984 return Py.None;
985 case 9 : 985 case 9 :
986 cursor.executemany(sql, params, bindings, maxrows); 986 cursor.executemany(sql, params, bindings, maxrows);
987 return Py.None; 987 return Py.None;
988 default : 988 default :
989 throw info.unexpectedCall(args.length, true); 989 throw info.unexpectedCall(args.length, true);
990 } 990 }
991 } 991 }
992 } 992 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld r483