|
Contributed by Howell
|
|
Monday, 12 June 2006 |
|
A lot has happened in the RSS world: Two new specifications have come out, RSS has become one of the most popular XML standards, and tools and feeds are popping up everywhere. |
|
Last Updated ( Monday, 12 June 2006 )
|
|
Read more...
|
|
|
An introduction to RSS news feeds |
|
Contributed by Howell
|
|
Monday, 12 June 2006 |
|
RDF Site Summary (RSS) is catching on as one of the most widely used XML formats on the Web. Find out how to create and use RSS files and learn what they can do for you. See why companies like Netscape, Userland, and Moreover use RSS to distribute and syndicate article summaries and headlines. This article includes sample code that demonstrates elements of an RSS file, plus a Perl example using the module XML::RSS. |
|
Last Updated ( Monday, 12 June 2006 )
|
|
Read more...
|
|
|
Contributed by Howell
|
|
Monday, 12 June 2006 |
//Replace string function. public static String Replace(String oText,String oFind,String oReplace) { int iPos=oText.IndexOf(oFind); String strReturn=""; while(iPos!=-1) { strReturn+=oText.Substring(0,iPos) + oReplace; oText=oText.Substring(iPos+oFind.Length); iPos=oText.IndexOf(oFind); } if(oText.Length>0) strReturn+=oText; return strReturn; } } |
|
|
The Full-Text Stuff That We Didn't Put In The Manual |
|
Contributed by Howell
|
|
Monday, 12 June 2006 |
|
The MySQL Reference Manual describes "Full-Text Search Functions" with lots of exciting details. But we leave some things out because they're ephemeral. That is, they could change at any moment. Here, for people who really want to know what's going on with full-text searching as of May 2004 in version 4.1.2, is some information to supplement the manual: Breaking Up Words Index File Key Structure Boolean Search Exact Phrase Search Selected Articles Stopwords |
|
Read more...
|
|
|
Contributed by Howell
|
|
Monday, 12 June 2006 |
Instead of porting code in time-consuming fashion from one database platform to another, and dealing with proprietary procedural languages, use SQLJ to write Oracle stored procedures with database-independent code that can be easily ported to other Java-enabled database platforms. |
|
Read more...
|
|
|
|
<< Start < Previous 11 12 13 14 15 16 17 18 Next > End >>
|
| Results 131 - 140 of 176 |