Hi people!
Can anyone please help me on how I can go about creating a Slideshow with images loaded from an SQL database.
Here is my SQL Script for the table:
CREATE TABLE [dbo].[Pictures](
[PicId] [uniqueidentifier] NOT NULL,
[Picture] [image] NOT NULL,
[PicDescription] [varchar](40) NULL,
[DateAdded] [datetime] NOT NULL,
GO
Here is the Procedure I created for what I think would be needed to return the images in asp
CREATE PROC GetAllPictures
AS
SELECT PicId, Picture
FROM Pictures
I hope I can get a responce from anyone this would realy help me for my project.
Loading
Rahul MPosted Sep 28, 2011, 8:21 AM
Nkululeko MazibukoPosted Sep 28, 2011, 8:01 AM
Rahul MPosted Sep 28, 2011, 7:51 AM