I want to create an asp edit screen, so that values can be inserted into an Oracle database table. I have one memo field that has the potential to be quite long. I currently have this field set to clob in the database. I would prefer to use a stored procedure to insert values into this field.
I am aware of the appendChunck method for a ADODB.connection. This method works fine for inserting values into a field. However, I feel that a stored procedure would be a better solution to this problem. I have to worry about many different columns in many different tables and work with new sequences values and so forth. I was thinking that with a Stored Procedure, I could throw all of the values into the procedure and make all of the appropriate inserts or updates and handle the intergrity of the data there.
I can not find a data type match for a clob in the adovbs.inc file.
Does anyone know if this can be done?
Does anyone know the maximum amount of data that can be inserted with the given constants in the adovbs.inc file?
Does this sound like a good solution?
Thanks,
Tim
I am aware of the appendChunck method for a ADODB.connection. This method works fine for inserting values into a field. However, I feel that a stored procedure would be a better solution to this problem. I have to worry about many different columns in many different tables and work with new sequences values and so forth. I was thinking that with a Stored Procedure, I could throw all of the values into the procedure and make all of the appropriate inserts or updates and handle the intergrity of the data there.
I can not find a data type match for a clob in the adovbs.inc file.
Does anyone know if this can be done?
Does anyone know the maximum amount of data that can be inserted with the given constants in the adovbs.inc file?
Does this sound like a good solution?
Thanks,
Tim