| LEFT | RIGHT |
| 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 Loading... |
| 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 } |
| LEFT | RIGHT |