Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: How to Store Image in SQL server 2000

    CREATE TABLE dbo.SC_Image

    (

    ID int NOT NULL ,

    ImageFile image NOT NULL,

    CONSTRAINT PK_SC_Image PRIMARY KEY CLUSTERED (ID)

    )

    GO

    CREATE PROCEDURE StoreImage

    (@ID Int, @ImageFile Image)

    AS

    INSERT INTO SC_Image (ID, ImageFile) VALUES...

Viewing post 1 (of 1 total)