I have this:
Create Proc CrearNuevoImagen
@imagen image
AS
INSERT INTO
Imagenes(imagen)
VALUES(
@imagen
)
I see that @imagen is of type 'image'.
My question is save that I have an .jpg image, on my front-end (my asp.net website code), how could I convert the .jpg image to fit into the 'image'-type column? Or does the SQL Server automatically do this for me?