473,549 Members | 2,545 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 3184
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='autobio graphy' " +
"return $s/title }" +
"</bookstore>";
xq.Compile(quer y);
xq.Execute("c:/books.xml", new XmlUrlResolver( ), Console.Out);
Console.Read();

"Clamps" <Cl****@RobotMa fia.Futurama.co m> wrote in message
news:eQ******** ******@TK2MSFTN GP10.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!P LEASEtkachenko. com> wrote in message
news:O%******** ********@TK2MSF TNGP10.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!P LEASEtkachenko. com> wrote in message
news:O%******** ********@TK2MSF TNGP10.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*******@discu ssions.microsof t.com> wrote in
message news:6A******** *************** ***********@mic rosoft.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!P LEASEtkachenko. com> wrote in
message
news:O%******** ********@TK2MSF TNGP10.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******* *******@TK2MSFT NGP10.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*******@discu ssions.microsof t.com> wrote in
message news:6A******** *************** ***********@mic rosoft.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!P LEASEtkachenko. com> wrote in
message
news:O%******** ********@TK2MSF TNGP10.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 thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
2781
by: Tom Corcoran | last post by:
I am working to ease updating of a html page by transforming 2 xml files. I was going to use xslt for this and had bought 2 unopened books, wrox xslt and o'reilly's xslt cookbook. But am now wondering if I am better of learning XQuery instead? Any thought and opinions would be appreciated. Cheers - Tom. The Architect: "Hope, it is the...
0
1410
by: Benjamin G. Jones | last post by:
I am having a very basic problem with XQuery. I want to use an XQuery API in Java (either Saxon or Qexo), and I have an XQuery expression that works as expeced from the command line if I specify a filename before the xpath expression. What I want to know is this: If I want to use Qexo's gnu.xquery.lang.XQuery.eval() or Saxon's...
1
2035
by: inquirydog | last post by:
Can anyone explain to me why the following XQuery expression (a simple xpath expression) returns a different result than the same expression in xslt? document("document.xml")//a/@b For the following sample document: <root> <a b="1" />
4
4111
by: Jeff Kish | last post by:
Hi. I see it appears that xquery is case senstitive for looking for particular attribute values etc. Is there a standard way around this? Say I want to see all nodes with an attribute valued "copyright" or some such? Finally, is there a "like" function similar to sql? I perused the docs and did not see anything, but was wondering if I...
0
2161
by: Tony Lavinio | last post by:
Dear Stylus Studio Friends, The new year is scarcely one month old, but we already have lots to report! For starters, there's Stylus Studio 6 Release 2. The latest release of Stylus Studio boasts literally hundreds of product enhancements, and is available now for free trial download. We're also proud to present our interview with Dr....
0
1468
by: Tony Lavinio | last post by:
Dear comp.text.xml community, Microsoft recently announced that they are dropping XQuery from their next release of the .NET Framework, 2.0 (Whidbey). Since Microsoft ships .NET Framework only every 3 or so years, cutting XQuery from Whidbey means that the next opportunity for XQuery to find its way into .NET Framework won't be until around...
0
2294
by: Stylus Studio | last post by:
DataDirect XQuery(TM) is the First Embeddable Component for XQuery That is Modeled after the XQuery API for Java(TM) (XQJ) BEDFORD, Mass.--Sept. 20, 2005--DataDirect Technologies (http://www.datadirect.com), the software industry leader in standards-based components for connecting applications to data and an operating unit of Progress...
2
1575
by: Ale | last post by:
Hi all! I need to build a middleware for XQuery: I mean a software receiving a std xquery and outputting the xquery result on "database.xml". This middleware must use 7 or 8 different choosable XQuery implementations... The XQuery received must be std for all implementations. The middleware will parse the std XQuery in the specific XQuery...
2
4308
by: tammo.mueller | last post by:
Hi, I'm trying to execute a xquery statement and I get always errors. It seems that only the prolog section is giving me errors. If I want to declare a namespace the xquery processor is coming up with an "unexpected token" error. The same error appears if I just set the version. The xquery statement itself is working without prolog, but...
0
7457
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7965
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
1
7483
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
1
5375
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
3504
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
3487
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1949
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1063
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
771
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

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.