Re: populating an access database used for ASP.net website...



Is this code using VB?

Would you sample code be part of the SQL statement?

Thanks,
RABMissouri




Mama*** wrote:
> "RAB" wrote:
> >I want to populate my access database with strings which are coded as
> >follows:
> >
> >
> >
> >{
> > {"string1"},
> > {"string2"},
> > {"string3"},
> > ......
> > {"string100"},
> > {"string101"},
> >}
> >
> >I have 200 of these string lists that I want to populate an access data
> >base. I am building a website using ASP.net.
> >
> >Without having to copy and paste each string individually, is there
> >anything I could do that would be simpler and faster?
> >
> >Thanks,
> >RABMissouri
> >
>
> you can always create a for cicle to do that
>
> for x=0 to 200
> insert "string" & x
> next
>
>
> --
> Sent via .NET Newsgroups
> http://www.dotnetnewsgroups.com

.


Loading