Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: insert image in sql

    CREATE PROCEDURE [DBO].[sp_update_photo]

    (

      @ID_Card varchar(7),

      @Photo image

    )

     AS

    UPDATE T_Employee

    SET Photo = @Photo

    WHERE ID_Card = @Id_Card

    GO

    so, what can i do to solve this problem ??

  • RE: insert image in sql

    CREATE PROCEDURE [DBO].[SP_UDT_FOTO]

    (

      @ID_Card varchar(7),

      @Foto image

    )

     AS

    UPDATE T_Employee

    SET Photo = @Photo

    WHERE ID_Card = @Id_Card

    GO

    so, what can i do to solve this problem ??

     

     

     

Viewing 2 posts - 1 through 2 (of 2 total)