Click here to Skip to main content
15,885,216 members
Articles / Database Development / NoSQL

RavenDB - An Introduction

,
Rate me:
Please Sign up or sign in to vote.
4.87/5 (38 votes)
28 Apr 2010CPOL7 min read 262.2K   2.7K   112  
An introduction to RavenDB - a new open source .NET document database using .NET 4.0 and VS 2010
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Raven DB</title>
    <link href="css/rdb.css" rel="stylesheet" type="text/css" />
    <link href="css/Pager.css" rel="stylesheet" type="text/css" />
    <link href="css/rdb.jsonEditor.css" rel="Stylesheet" type="text/css" />
    <link href="css/smoothness/jquery-ui-1.8rc2.custom.css" rel="Stylesheet" type="text/css" />

    <script type="text/javascript" src="js/jquery-1.4.2.min.js"></script>
    <script type="text/javascript" src="js/jquery-ui.js"></script>
    <script type="text/javascript" src="js/jquery-jtemplates.js"></script>
    <script type="text/javascript" src="js/jquery.pager.js"></script>
    <script type="text/javascript" src="js/json2.js"></script>
    <script type="text/javascript" src="js/jstree/jquery.tree.js"></script>

    <script type="text/javascript" src="js/jquery.RavenDB.js"></script>
    <script type="text/javascript" src="js/raven-ui.js"></script>
    <script type="text/javascript" src="js/rdb.jsonEditor/rdb.jsonEditor.js"></script>
    <script type="text/javascript" src="js/raven-ui.documents.js"></script>
</head>
<body>
    <div id="header">
        <div id="logo">
            <a href="index.html" title="Home"><img src="images/logo.png" alt="RavenDB" style="border:none;" /></a>
        </div>
        <div id="nav">
            <ul>
                <li><a href="index.html">home</a></li>
                <li><a href="statistics.html">global statistics</a></li>
                <li><a href="documents.html" class="nav_active">documents</a></li>
                <li><a href="indexes.html">indexes</a></li>
                <li><a href="view.html?docId=raven_documentation/index">documentation</a></li>
            </ul>
        </div>
        <div class="clear"></div>
    </div>    
    <div id="body" style="position:relative;">
        <div id="ajaxSuccess"></div>
        <div id="ajaxError"></div>
        <div id="right" style="width:250px;">
            <div class="sideBarListBox">
                <ul>
                    <li><button id="createNewDocument">Create New Document</button></li>
                </ul>
                <ul>
                    <li>
                        <h3 style="padding: 10px 0;">Query Documents</h3>
                        <label for="txtIndexName">Index Name</label><br />
                        <input type="text" id="txtIndexName" name="txtIndexName" style="width:200px;" /><br /><br />

                        <div id="queryValueSubmit" style="display:none;">
                            <label for="txtIndexValue">Query</label><br />
                            <textarea rows="4" id="txtIndexValue" name="txtIndexValue" style="width:200px;"></textarea><br /><br />

                            <button id="executeQuery">Execute Query</button><br /><br />
                        </div>
                    </li>
                </ul>
            </div>
        </div>
        <div id="content" style="margin-right:350px;">
            <h2>
                Documents
            </h2>
            <p id="docList">
                <img src="images/ajax-loader.gif" /> Loading...
            </p>
            <div id="pager"></div>
        </div>
        <div id="documentPreview" style="display:none; background-color: #fff; border:1px solid #000;">
            
        </div>
    </div>
    <div id="footer">
        <div style="float:left; margin-left:20px;">
            Copyright 2010 <a href="http://hibernatingrhinos.com">Hibernating Rhinos</a>. All Rights Reserved.            
        </div>
        <div style="float:right; margin-right:20px;">
            Web interface developed by <a href="http://werul.com">Wer�l</a>
        </div>
        <div style="clear:both;"></div>
    </div>
</body>
</html>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
I've been a software developer since 1996 and have enjoyed C# since 2003. I have a Bachelor's degree in Computer Science and for some reason, a Master's degree in Business Administration. I currently do software development contracting/consulting.

Written By
Israel Israel
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions