- From: Aaron Michal <amichal@intellidimension.com>
- Date: Wed, 21 Nov 2001 14:41:19 -0500
- To: <www-rdf-interest@w3.org>
As Geoff mentioned, Our product, RDF Gateway [1] also does something like this for Windows. One of the nicer features for ASP programmers is it exposes it's RDF data through an ADO provider. This make writing ASP webpages backed by RDF Gateway as simple as: <% var conn = new ActiveXObject("ADODB.Connection"); conn.Open("provider=RDFOLEDB.Provider;server=localhost;netport=7055;database =itdsw;uid=sa;pwd=sa;"); //find out how many users trust each site var rs = conn.Execute("select ?site ?count using main where {[itdns:trusts] ?user ?site} and ?count=count(?user) order by ?count desc numeric"); while (!rs.EOF) { var strSite = rs("site").value.substr(1); var strCount = rs("count").value.substr(1); Response.Write("<li><span class='site'>[" + strCount + "] <a href=pages/resource_view.asp?resource="+Server.URLEncode(strSite)+">" + strSite + "</a></span>"); rs.MoveNext(); } rs.Close(); %> A block of code that will look very familiar to asp programmers. RDF Gateway also has a concept of views which let a developer present rdf data as a standard database table. This lets us easily interact with tools like Crystal Reports that expect tables of data. -Aaron Michal Intellidimension,. Inc. [1] http://www.intellidimension.com/rdfgateway
Received on Wednesday, 21 November 2001 15:41:15 UTC