Displaying 2 results from an estimated 2 matches for "featureblurb".
Did you mean:
feature_blurb
2006 Jun 26
0
DBI question. How do I load a database with data parsed from REXML?
...Code:
create table Newsfeeds (
ArticleId varchar(100),
PostingDate date,
ArchiveDate date,
NewsType varchar(100),
Headline text,
Blurb text,
Byline varchar(100),
Body text,
FeatureBlurb text,
FeatureImage text,
Attribution varchar(100),
Source text,
Copyright text,
Brand text
);
What i need to do is put each parsing from the constructed data object into
its place in the database. This is not inside...
2006 Jun 24
0
Best approach for loading a data object into mysql?
...e this:
create table Newsfeeds (
ArticleId varchar(100),
PostingDate date,
ArchiveDate date,
NewsType varchar(100),
Headline text,
Blurb text,
Byline varchar(100),
Body text,
FeatureBlurb text,
FeatureImage text,
Attribution varchar(100),
Source text,
Copyright text,
Brand text
);
What i need to do is put each parsing from the constructed data object into
its place in the database. This is not inside...