Ash Grove wrote:
> I currently do this by building a delimited string in
> the application containing all data to be inserted and
> then sending it, via callablestatement, to a stored
> function. The function parses the string, does the
> inserts and returns the primary key via a registered
> out parameter.
Why assemble a string and parse it? Why not just use multiple parameters
directly?
-O