Database
nql.txt
Associated article: Programmer's Toolchest
Tags: Database
Published source code accompanying the article by David Pallman in which he presents the Network Query Language (NQL) that he developed with the new class of "connected" applications in mind--intelligent agents, bots, spiders, middleware, and web apps.
The Network Query Language
by David Pallman
Listing One
get "http://www.cnn.com"
match '<li><a href="{link}">{headline}</a>'
while
{
output headline, link
nextmatch
}
Listing Two
(...


