My favorites | Sign in
Google
Projects on Google Code Results 1 - 10 of 478
C#-SQLite is an independent reimplementation of the [http://www.sqlite.org SQLite] software library version 3.6.17 It has been ported into managed code, written in C# See the Wiki VersionHistory for details ===Please keep in mind the following:=== * This is not an official version of SQL...
==Announcements== * It would be nice to have someone contribute in providing a simple documentation about what one can do with SQLite Manager (and what one cannot). Manage all your sqlite databases using this lightweight extension for firefox, thunderbird, seamonkey, songbird, komodo etc. ([Su...
This is a simple to use c++ wrapper for sqlite3. It is composed of two files *sqdb.h* and *sqdb.cpp*. ===Create a table if it doesn't exist=== {{{ #include "sqdb.h" int main() { sqdb::Db db("db.sdb"); if ( !db.TableExists("t") ) { db.Query("create table t(i int);").Next(); } ...
=Download= ==Local Project== 1.[http://hibernate-sqlite.googlecode.com/files/HibernateSQLite.rar]<br> No referenced jars included, built it with maven2 and then import into eclipse.(12.7K)<br> 2.[http://hibernate-sqlite.googlecode.com/files/HibernateSQLite_with_jar.rar]<br> Referenced jars incl...
== Description == A SQL database access library for Objective-C, initially focused on SQLite as an application database. The library supports both Mac OS X and iPhone development. Plausible Database is provided free of charge under the BSD license, and may be freely integrated with any applica...
[http://sqljs.googlecode.com/svn/trunk/docs/index.html Documentation] ---- == DBClass.js == An O/R Mapper, supporting Adobe AIR, Gears, HTML5, Yahoo! Widgets.<br /><br /> [http://sqljs.googlecode.com/svn/trunk/src/DBClass.js Download from SVN Repository]<br /><br /> Notepad Demos: [http://s...
*pysqliteserver* is sqlite server/client written completely in Python. It has two main parts, server and client. Communication between them is done using [http://docs.python.org/library/socket.html socket] module and [http://code.google.com/p/pybon/ pybon], so in order to run *pysqliteserver* please...
= SQLite Foreign Key Trigger Generator for SQLAlchemy = == Background == This project exists because SQLite parses fk column constraints but does not enforce them. You can [http://www.sqlite.org/cvstrac/wiki?p=ForeignKeyTriggers read more about the problem and its solution if you are interested]...
= Sqlite database ADT = == Historia == Para una materia de la facultad con mi grupo elegimos usar [http://www.sqlite.org/ SQLite]. Preguntando por ahí, [mailto:juansotuyoATgmail Juan Martín Sotuyo Dodero] había hecho un ADT, así que lo tomé prestado y lo adapté para mi trabajo. Hace po...
The original SQLite source has been modified following the tutorial available on http://www.persistentrealities.com/index.php?p=18 The "inspiration" for this came after finding this implementation: http://tannertech.net/sqlite3vb/ However, the above mentioned one does not use the latest SQLite...
1 2 3 4 5 6 7 8 9 10 Next