| LEFT | RIGHT |
| 1 /* | 1 /* |
| 2 * Jython Database Specification API 2.0 | 2 * Jython Database Specification API 2.0 |
| 3 * | 3 * |
| 4 * $Id$ | 4 * $Id$ |
| 5 * | 5 * |
| 6 * Copyright (c) 2001 brian zimmer <bzimmer@ziclix.com> | 6 * Copyright (c) 2001 brian zimmer <bzimmer@ziclix.com> |
| 7 * | 7 * |
| 8 */ | 8 */ |
| 9 package com.ziclix.python.sql.util; | 9 package com.ziclix.python.sql.util; |
| 10 | 10 |
| (...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 PyObject bindings = parser.kw("bindings", Py.None); | 321 PyObject bindings = parser.kw("bindings", Py.None); |
| 322 PyObject count = bcp.bcp(table, where, params, include, exclude,
toTable, bindings); | 322 PyObject count = bcp.bcp(table, where, params, include, exclude,
toTable, bindings); |
| 323 | 323 |
| 324 return count; | 324 return count; |
| 325 | 325 |
| 326 default : | 326 default : |
| 327 throw info.unexpectedCall(3, false); | 327 throw info.unexpectedCall(3, false); |
| 328 } | 328 } |
| 329 } | 329 } |
| 330 } | 330 } |
| LEFT | RIGHT |