Passing Dates to a Stored ProcedureBy Bill Graziano on 13 August 2000 | Tags: Stored Procedures Pari writes "I take a date from the html form and wish to pass on to the stored procedure where the value is inserted . . .
Pari writes "I take a date from the html form and wish to pass on to the stored procedure where the value is inserted. This is the stmt i give in the asp page:
---------------------------------------- conn.execute ("InsertMain 'id','name','desc','syno','ldate'") The stored proc is: --------------------- CREATE PROCEDURE [InsertMain] @topid varchar(20), @name varchar(50), @descr varchar(200), @syno varchar(150), @live datetime AS Insert into MainTopic(topic_id,Topic_name,description,synopsis,livedate) values(@topid,@name,@descr,@syno,@live) I get the following error: ----------------------------- Microsoft OLE DB Provider for ODBC Drivers error '80040e07' [Microsoft][ODBC SQL Server Driver][SQL Server]Error converting data type varchar to datetime. PUHLEAZE help me... if this doesnt work i have to work with inline sql stmts which work.... thnx in adv. pari" SQL Server is pretty pick about dates (and so am I :). Bascially if you get the format just a little bit wrong you will get this type of error. You can find a list of valid date formats in Books Online under the CONVERT statement. My suggestion would be to pass the date into the parameter a character string and explicitly convert it do a date field. Make @LIVE a VARCHAR(40) field. Then add the following lines: DECLARE @livedate DATETIME This will explicitly convert from VARCHAR to DATETIME. If there is an error you can trap it and return an appropriate error message. Again, look at the list of valid dates in Books Online and stick with one of those formats and you should be ok.
|
- Advertisement - |