Hi
I am trying to insert new records using a stored procedure. Works ok
until I try passing dates as parameters.
We are using sql server 7 and tadostoredproc with delphi 5.
Executing from sql analyser works ok
Any ideas?

CREATE PROCEDURE InsertSOShipHeader
  @ShipperID VARCHAR(15),
  @OrdDate SMALLDATETIME
AS
INSERT INTO SOShipHeader (
  ShipperID,
  OrdDate
)
VALUES (
  @ShipperID,
  @OrdDate
)

Thanks

#####################################################################################
This e-mail message has been scanned for Viruses and Content and cleared 
by MailMarshal
For more information please visit www.marshalsoftware.com
#####################################################################################
---------------------------------------------------------------------------
    New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
                  Website: http://www.delphi.org.nz
To UnSub, send email to: [EMAIL PROTECTED] 
with body of "unsubscribe delphi"
Web Archive at: http://www.mail-archive.com/delphi%40delphi.org.nz/

Reply via email to