472,119 Members | 1,595 Online
Bytes | Software Development & Data Engineering Community
Post +

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,119 software developers and data experts.

XQuery DLL

So I've been reading about XQuery, but cannot find a dll or namespace
download to use the technology in vs.net 2002 or 2003. Any directions would
be great.

--
"If I'm the president, we're going to have emergency-room care,
we're going to have gag orders."

---W "The President"

Nov 12 '05 #1
8 3094
Clamps wrote:
So I've been reading about XQuery, but cannot find a dll or namespace
download to use the technology in vs.net 2002 or 2003. Any directions
would be great.


XQuery is not supported by VS.NET 2002 or 2003. VS.NET 2005 won't
support it either.
Take a look at SQL Server 2005 - it supports XQuery.

--
Oleg Tkachenko [XML MVP]
http://blog.tkachenko.com
Nov 12 '05 #2
Han
SQL 2005, as Oleg said, or VS.Net 2005 have it.

XQueryCommand xq = new XQueryCommand();
string query =
"<bookstore>" +
"{ for $s in /bookstore/book " +
"where $s/@genre='autobiography' " +
"return $s/title }" +
"</bookstore>";
xq.Compile(query);
xq.Execute("c:/books.xml", new XmlUrlResolver(), Console.Out);
Console.Read();

"Clamps" <Cl****@RobotMafia.Futurama.com> wrote in message
news:eQ**************@TK2MSFTNGP10.phx.gbl...
So I've been reading about XQuery, but cannot find a dll or namespace
download to use the technology in vs.net 2002 or 2003. Any directions
would
be great.

--
"If I'm the president, we're going to have emergency-room care,
we're going to have gag orders."

---W "The President"


Nov 12 '05 #3
Han wrote:
SQL 2005, as Oleg said, or VS.Net 2005 have it.


Important amendment: VS.NET 2005 Beta1 does have some XQuery support,
but it's been oficially announced it will be cut in Beta2 and won't be
in VS.NET 2005 RTM.

--
Oleg Tkachenko [XML MVP]
http://blog.tkachenko.com
Nov 12 '05 #4
Han
Really. Shocking. I even worry SQL 2005 would stop the support.

By the way, this is a news group for SQL 2005 Beta and XML. For anyone
interested.
http://communities.microsoft.com/new...r2005&slcid=us
--
Pohwan Han. Seoul. Have a nice day.
"Oleg Tkachenko [MVP]" <oleg@NO!SPAM!PLEASEtkachenko.com> wrote in message
news:O%****************@TK2MSFTNGP10.phx.gbl...
Han wrote:
SQL 2005, as Oleg said, or VS.Net 2005 have it.


Important amendment: VS.NET 2005 Beta1 does have some XQuery support, but
it's been oficially announced it will be cut in Beta2 and won't be in
VS.NET 2005 RTM.

--
Oleg Tkachenko [XML MVP]
http://blog.tkachenko.com


Nov 12 '05 #5
Han wrote:
Really. Shocking. I even worry SQL 2005 would stop the support.


Don't worry, it won't.

--
Oleg Tkachenko [XML MVP]
http://blog.tkachenko.com
Nov 12 '05 #6


"Han" wrote:
Really. Shocking. I even worry SQL 2005 would stop the support.

The problem is the huge amount of time that the XQuery spec has taken/is
taking to get to recommendation status...the word is that once there is a
concrete recommendation, then XQuery support will be rolled into .NET - it's
sensible really - for example, the fact that MS included an early working
draft of XSLT in MSXML caused problems later on. It would have been better to
wait in that case as well...

By the way, this is a news group for SQL 2005 Beta and XML. For anyone
interested.
http://communities.microsoft.com/new...r2005&slcid=us
--
Pohwan Han. Seoul. Have a nice day.
"Oleg Tkachenko [MVP]" <oleg@NO!SPAM!PLEASEtkachenko.com> wrote in message
news:O%****************@TK2MSFTNGP10.phx.gbl...
Han wrote:
SQL 2005, as Oleg said, or VS.Net 2005 have it.


Important amendment: VS.NET 2005 Beta1 does have some XQuery support, but
it's been oficially announced it will be cut in Beta2 and won't be in
VS.NET 2005 RTM.

--
Oleg Tkachenko [XML MVP]
http://blog.tkachenko.com


Nov 12 '05 #7
Han
Yes, that's what I am worrying. One of my projects is largely based on
Xquery in SQL 2005. Lots of time/labor are invested on workaround of missing
functionalities. Missing or incomplete axes expression, such as basic text()
node test, sibling family. EBV or Effective Boolean Value, the basis of
Xquery, is not yet agreed on among committee members. XSLT may be an
alternative of Xquery in programming level, but not in database. I am
happened to be invited at a round table meeting in Seoul with .Net PM the
day after tomorrow. I would like to be confirmed on every issues there. I
will let you know what happened there if that's not against NDA. Thanks.

--
Pohwan Han. Seoul. Have a nice day.
"Nigel Armstrong" <Nigel Ar*******@discussions.microsoft.com> wrote in
message news:6A**********************************@microsof t.com...


"Han" wrote:
Really. Shocking. I even worry SQL 2005 would stop the support.


The problem is the huge amount of time that the XQuery spec has taken/is
taking to get to recommendation status...the word is that once there is a
concrete recommendation, then XQuery support will be rolled into .NET -
it's
sensible really - for example, the fact that MS included an early working
draft of XSLT in MSXML caused problems later on. It would have been better
to
wait in that case as well...

By the way, this is a news group for SQL 2005 Beta and XML. For anyone
interested.
http://communities.microsoft.com/new...r2005&slcid=us
--
Pohwan Han. Seoul. Have a nice day.
"Oleg Tkachenko [MVP]" <oleg@NO!SPAM!PLEASEtkachenko.com> wrote in
message
news:O%****************@TK2MSFTNGP10.phx.gbl...
> Han wrote:
>
>> SQL 2005, as Oleg said, or VS.Net 2005 have it.
>
> Important amendment: VS.NET 2005 Beta1 does have some XQuery support,
> but
> it's been oficially announced it will be cut in Beta2 and won't be in
> VS.NET 2005 RTM.
>
> --
> Oleg Tkachenko [XML MVP]
> http://blog.tkachenko.com



Nov 12 '05 #8
"Han" <hp****@kornet.net.korea> wrote in message news:<uf**************@TK2MSFTNGP10.phx.gbl>...
Yes, that's what I am worrying. One of my projects is largely based on
Xquery in SQL 2005. Lots of time/labor are invested on workaround of missing
functionalities. Missing or incomplete axes expression, such as basic text()
node test, sibling family. EBV or Effective Boolean Value, the basis of
Xquery, is not yet agreed on among committee members. XSLT may be an
alternative of Xquery in programming level, but not in database. I am
happened to be invited at a round table meeting in Seoul with .Net PM the
day after tomorrow. I would like to be confirmed on every issues there. I
will let you know what happened there if that's not against NDA. Thanks.

--
Pohwan Han. Seoul. Have a nice day.
"Nigel Armstrong" <Nigel Ar*******@discussions.microsoft.com> wrote in
message news:6A**********************************@microsof t.com...


"Han" wrote:
Really. Shocking. I even worry SQL 2005 would stop the support.


The problem is the huge amount of time that the XQuery spec has taken/is
taking to get to recommendation status...the word is that once there is a
concrete recommendation, then XQuery support will be rolled into .NET -
it's
sensible really - for example, the fact that MS included an early working
draft of XSLT in MSXML caused problems later on. It would have been better
to
wait in that case as well...

By the way, this is a news group for SQL 2005 Beta and XML. For anyone
interested.
http://communities.microsoft.com/new...r2005&slcid=us
--
Pohwan Han. Seoul. Have a nice day.
"Oleg Tkachenko [MVP]" <oleg@NO!SPAM!PLEASEtkachenko.com> wrote in
message
news:O%****************@TK2MSFTNGP10.phx.gbl...
> Han wrote:
>
>> SQL 2005, as Oleg said, or VS.Net 2005 have it.
>
> Important amendment: VS.NET 2005 Beta1 does have some XQuery support,
> but
> it's been oficially announced it will be cut in Beta2 and won't be in
> VS.NET 2005 RTM.
>
> --
> Oleg Tkachenko [XML MVP]
> http://blog.tkachenko.com


Try Saxon.Net Regular Saxon is a leader in implenting XQuery support.
Saxon.Net is still a little green -- as a project -- but, they now
have a downloadable implementation.

Microsoft...tsk!, tsk!, tsk!
Nov 12 '05 #9

This discussion thread is closed

Replies have been disabled for this discussion.

Similar topics

2 posts views Thread by Tom Corcoran | last post: by
reply views Thread by Benjamin G. Jones | last post: by
4 posts views Thread by Jeff Kish | last post: by
2 posts views Thread by Ale | last post: by
2 posts views Thread by tammo.mueller | last post: by
reply views Thread by leo001 | last post: by

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.