• Complain

Priscilla Walmsley - XQuery: Search Across a Variety of XML Data

Here you can read online Priscilla Walmsley - XQuery: Search Across a Variety of XML Data full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. year: 2015, publisher: OReilly Media, genre: Home and family. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

Priscilla Walmsley XQuery: Search Across a Variety of XML Data
  • Book:
    XQuery: Search Across a Variety of XML Data
  • Author:
  • Publisher:
    OReilly Media
  • Genre:
  • Year:
    2015
  • Rating:
    3 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 60
    • 1
    • 2
    • 3
    • 4
    • 5

XQuery: Search Across a Variety of XML Data: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "XQuery: Search Across a Variety of XML Data" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

With XQuery, you finally have a tool that will make it much easier to search, extract and manipulate information from XML content stored in databases. Updated for XQuery 3.0, this in-depth tutorial not only walks you through the XQuery specification, but also teaches you how to program with this highly practical query language.

XQuery is for query writers who have some knowledge of XML basics, but not necessarily advanced knowledge of XML-related technologies. It can be used both as a tutorial, by reading cover to cover, and as a reference, by using the comprehensive index and appendixes. Either way, you will find the background knowledge in namespaces, schemas, built-in types and regular expressions that is relevant to writing XML queries.

This second edition provides:

  • A high-level overview and quick tour of XQuery
  • New chapters on switch expressions, dynamic function calls, and other features
  • Information to write sophisticated queries, without being bogged down by the details of types, namespaces, and schemas
  • Advanced concepts for users who want to take advantage of modularity, namespaces, typing and schemas
  • Guidelines for working with specific types of data, such as numbers, strings, dates, URIs and processing instructions
  • A complete alphabetical reference to the built-in functions and types

Youll also learn about XQuerys support for filtering, sorting, and grouping data, as well as how to use FLWOR expressions, XPath, and XQuery tools for extracting and combining information. Discover how to apply all of these tools to a wide variety of data sources, and how to recombine information from multiple sources into a single final output result.

Priscilla Walmsley: author's other books


Who wrote XQuery: Search Across a Variety of XML Data? Find out the surname, the name of the author of the book and a list of all author's works by series.

XQuery: Search Across a Variety of XML Data — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "XQuery: Search Across a Variety of XML Data" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make
XQuery

by Priscilla Walmsley

Copyright 2015 Priscilla Walmsley. All rights reserved.

Printed in the United States of America.

Published by OReilly Media, Inc. , 1005 Gravenstein Highway North, Sebastopol, CA 95472.

OReilly books may be purchased for educational, business, or sales promotional use. Online editions are also available for most titles ( http://safaribooksonline.com ). For more information, contact our corporate/institutional sales department: 800-998-9938 or corporate@oreilly.com .

  • Editor: Meg Foley
  • Production Editor: FILL IN PRODUCTION EDITOR
  • Copyeditor: FILL IN COPYEDITOR
  • Proofreader: FILL IN PROOFREADER
  • Indexer: FILL IN INDEXER
  • Interior Designer: David Futato
  • Cover Designer: Karen Montgomery
  • Illustrator: Rebecca Demarest
  • March 2015: Second Edition
Revision History for the Second Edition
  • 2015-06-25: First Release

See http://oreilly.com/catalog/errata.csp?isbn=9781491915103 for release details.

While the publisher and the author(s) have used good faith efforts to ensure that the information and instructions contained in this work are accurate, the publisher and the author(s) disclaim all responsibility for errors or omissions, including without limitation responsibility for damages resulting from the use of or reliance on this work. Use of the information and instructions contained in this work is at your own risk. If any code samples or other technology this work contains or describes is subject to open source licenses or the intellectual property rights of others, it is your responsibility to ensure that your use thereof complies with such licenses and/or rights.

978-1-491-91510-3

[FILL IN]

Preface

This book provides complete coverage of the W3C XQuery 3.1 standard. In addition, it provides the background knowledge in namespaces, schemas, built-in types, and regular expressions that is relevant to writing XML queries.

This book is designed for query writers who have some knowledge of XML basics but not necessarily advanced knowledge of XML-related technologies. It can be used as a tutorial, by reading it cover to cover, and as a reference, by using the comprehensive index and appendixes.

Contents of This Book

The book is organized into six parts:

  1. provide a high-level overview and quick tour of XQuery.

  2. provide enough information to write sophisticated queries, without being bogged down by the details of types, namespaces, and schemas.

  3. introduce some advanced concepts for users who want to take advantage of modularity, namespaces, typing, and schemas.

  4. provide guidelines for working with specific types of data, such as numbers, strings, dates, URIs, processing instructions and maps.

  5. describe XQuerys implementation-specific features and its relationship to other standards SQL and XSLT.

  6. provide a complete alphabetical reference to the built-in functions, types, and error messages.

Reading the Syntax Diagrams

illustrates the components of a syntax diagram, showing the schema import syntax as an example.

Figure P-1 Example syntax diagram Rules for interpreting the syntax diagrams - photo 1
Figure P-1. Example syntax diagram

Rules for interpreting the syntax diagrams are:

  • Parts of the diagram in constant width font are literal values. In , import schema and at should appear literally in your query.

  • Quotes that appear in syntax diagrams also must appear in your query. shows that the <namespace-name> must be surrounded by quotes, whereas the <prefix> must not. Either single or double quotes can be used in XQuery, but only double quotes are included in the diagrams for simplicity.

  • Where you can specify a value, such as a name, a descriptive name for that value appears in constant width italic and is surrounded by angle brackets. shows that you fill in the <namespace-name>, <prefix>, and <location> with your own values.

  • Multiple options are indicated by parallel lines in the diagram. shows that you may choose to specify a namespace prefix or default element namespace.

  • Optional parts of the expression are indicated by a line that bypasses the main arrow. In , it is not necessary to include the namespace <prefix> = or the default element namespace keywords.

  • Repeating parts of an expression are indicated by an arrow that returns to the beginning. shows that you can specify multiple <location>s (separated by commas) as part of the at clause.

Conventions Used in This Book

Constant width is used for:

  • Code examples and fragments

  • Anything that might appear in an XML document, including element and attribute names, element contents, attribute values, and processing instructions

  • Anything that might appear in a query, including keywords, operators and literals

Constant width bold is used for:

  • Emphasis in code examples and fragments

Italic is used for:

  • New terms where they are defined

  • Emphasis in body text

  • Pathnames, filenames, and program names

  • Host and domain names

Warning

This icon indicates a warning or caution.

The numbered examples in this book are self-sufficient and contain all the necessary declarations to run them independently. When they use functionality that is only available in XQuery 3.0 or 3.1, they contain a version declaration to indicate this. Other (non-numbered) examples appear as code fragments that may not be able to run independently because, for example, they are dependent on a variable that is defined elsewhere. These code fragments are placed into a separate paragraph like this:

for $prod as element(*,ProductType) in doc("catalog.xml")/catalog/*return $prod/name
Using Code Examples

This book is here to help you get your job done. In general, you may use the code in this book in your programs and documentation. You do not need to contact us for permission unless youre reproducing a significant portion of the code. For example, writing a query that uses several chunks of code from this book does not require permission. Selling or distributing a CD-ROM of examples from OReilly books does require permission. Answering a question by citing this book and quoting example code does not require permission. Incorporating a significant amount of example code from this book into your products documentation does require permission.

We appreciate, but do not require, attribution. An attribution usually includes the title, author, publisher, and ISBN. For example: "XQuery by Priscilla Walmsley. Copyright 2015 Priscilla Walmsley, 978-1-491-91510-3.

If you feel your use of code examples falls outside fair use or the permission given above, feel free to contact us at .

Useful Functions
Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «XQuery: Search Across a Variety of XML Data»

Look at similar books to XQuery: Search Across a Variety of XML Data. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «XQuery: Search Across a Variety of XML Data»

Discussion, reviews of the book XQuery: Search Across a Variety of XML Data and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.