Adobe Integrated Runtime (AIR) for JavaScript Developers Pocket Reference

(nextflipdebug5) #1
Embedded Database | 113

</script>
</head>
<body>
<div style="margin: 0px auto; width: 80%;
background-color: white; border: solid black;">
<div style="background-color: lightblue;
border-bottom: solid black; padding: 3px;
font-family: sans-serif; font-weight: bold;"
ondragenter="onDragEnter(event)"
ondragover="onDragOver(event)"
ondrop="onDrop(event)">
Drop Here
</div>
<p>
<span id="content" ondragstart="onDragStart(event)"

ondragend="onDragEnd(event)">
<a href="http://www.adobe.com">Drag Me
(text/uri-list)</a>
</span>
</p>
</div>
</body>
</html>

Embedded Database


Adobe AIR includes an embedded SQLite database which
can be leveraged by AIR applications. SQLite is a compact
open source database that supports ACID transactions,
requires zero-configuration, implements most of SQL92, and
supports strings and BLOBs up to 2GB in size. All database
information is stored in a single file on disk, and can be freely
shared between machines, even if they have different byte
orders.


TIP
You can find more information about SQLite on the
project web site at:http://www.sqlite.org.
Free download pdf