Main > Free Download Search >

Free sqlite 3.3.x c api. software for linux

sqlite 3.3.x c api.

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1948
C++ WSDL Parser 1.9.3

C++ WSDL Parser 1.9.3


C++ WSDL Parser is an efficient C++ Web services library. more>>
C++ WSDL Parser is an efficient C++ Web services library that includes a standards compliant WSDL parser API, a Schema parser and validator, an XML parser and serializer, and an API for dynamically inspecting and invoking WSDL Web services.
Enhancements:
- Many WSDLs can now be dynamically invoked.
- Added documentation (doxygen for the API).
- Better error reporting when types are found missing.
<<less
Download (0.56MB)
Added: 2005-10-06 License: LGPL (GNU Lesser General Public License) Price:
1483 downloads
UniPKG 0.6.5

UniPKG 0.6.5


UniPKG (Universal PaCkaGe manager) is a modular package manager. more>>
UniPKG - Universal PacKaGe manager - is a modular package manager. UniPKG contains support for RPM, DEB and slacks TGZ package format. In distant future, ArchLinuxs package format is planned as well.
It doesnt depend on any of the distributions tools - its completely self-sufficient, formats such as cpio or tar were (re)implemented.
Note that the binaries for unipkg core, unipkg-trans (which allows migration of data among two backends), three package handlers (Deb, RPM and Slack) and five database backends (File, Directory, XML file, Debian r/o and Slack r/o) have in total only 160kB. The dependencies are only zlib and libc, optionally also libxml2-0 (unipkg-xmlfile backend) and sqlite3 (unipkg-sqlite backend).
UniPKG was carefully tested using Valgrind, to cut the chances of a memory leak or other improper memory handling.
UniPKG is licensed under the free GNU/GPLv2.
Enhancements:
- A written archive API for handling CPIO, TAR, and AR archive formats. All package handlers have been rewritten to use this API.
- An ArchLinux package handler has been added.
- SUIG/SGID missing while unpacking has been fixed.
- Preliminary LZMA support (Larhzu) has been added.
- The RPM package handler has been completely rewritten.
- Work has begun on netlib and UniGET.
- There are various bugfixes.
<<less
Download (0.090MB)
Added: 2005-12-16 License: GPL (GNU General Public License) Price:
1408 downloads
Java for C++ 0.4

Java for C++ 0.4


Java for C++ is a tool to generate C++-wrapper-classes for existing Java-classes. more>>
Java for C++ is a tool to generate C++-wrapper-classes for existing Java-classes. This tool reads a list of Java class names and creates source code for C++-classes to wrap them.
The implementation of the wrapper classes uses JNI (Java Native Interface) to call the "real" Java classes.
The C++-API to use these wrapper classes is very close to the API of the original Java classes. So developers of C++-software can use Java-classes as if they have been implemented in C++.
Enhancements:
- A problem where null values for method arguments, method return values, or field values caused some generated code to crash was fixed.
- Updating is strongly encouraged.
<<less
Download (0.043MB)
Added: 2005-12-22 License: GPL (GNU General Public License) Price:
1404 downloads
dbi4php 1.0

dbi4php 1.0


php4dbi is a database abstraction layer for PHP. more>>
php4dbi is a database abstraction layer for PHP. dbi4php is simple to use (a single file with a simple API) and lean enought to not bloat your PHP application.
It provides a common API for accessing a variety of database systems. This allows you to develop your application without limiting it to working on just a single database.
You also wont need to keep looking at the PHP documentation pages to find the correct function name for a particular database since they dont use a common naming scheme. (For example, MySQL uses mysql_connect while SQLite uses sqlite_open.)
The dbi4php tools has actually been around since the year 2000 as part of the WebCalendar project. So, it is a very stable tool that has been tested and used in production environments for years.
Enhancements:
- This is the initial public release.
- Previously, this tool was bundled with the WebCalendar application (since 2000).
<<less
Download (0.017MB)
Added: 2006-02-02 License: GPL (GNU General Public License) Price:
1359 downloads
Amazon API Search 1.0.0

Amazon API Search 1.0.0


Amazon API Search is a script to search Amazon. more>>
Amazon API Search is the beginnings of a perl script to search Amazon.

It interfaces with Amazons API interface and performs whatever search the user desires, it then parses the data returned and inserts it in to an MySQL table.

Currently the script only deals with basic returned data, and does not have a user interface. In future releases I hope to correct this.

The script is certainly worth a look for anyone interested in using Amazons API interface.
<<less
Download (0.002MB)
Added: 2006-02-27 License: GPL (GNU General Public License) Price:
1341 downloads
JBooleanExpression 1.2

JBooleanExpression 1.2


JBooleanExpression is a simple Java API to evaluate a Boolean String Expression. more>>
JBooleanExpression is a simple Java API to evaluate a Boolean String Expression like "!true&&false||true" (parse a Boolean String Expression to a boolean primitive type).
Enhancements:
- Bugs were fixed.
- A demo class was added.
<<less
Download (0.014MB)
Added: 2006-03-14 License: Other/Proprietary License with Source Price:
1322 downloads
GROU.PS Web 2.0 API 0.1

GROU.PS Web 2.0 API 0.1


GROU.PS Web is a general purpose PHP API, created for use in Web 2.0 sites. more>>
GROU.PS Web is a general purpose PHP API, created for use in Web 2.0 sites. It includes frequently used design patterns of well known web 2.0 sites. For a correct definiton of Web 2.0, you may want to check http://en.wikipedia.org/wiki/Web_2.0

Our API currently has 2 classes:

1) TagCloud?.class.php

Feed the class with your own data, and create Web 2.0 style tag clouds

2) Utility.class.php

General purpose functions. For instance getStyledDateDiff gives nicely formatted date differences that are in use in digg.com and grou.ps

The APIs are not complete yet. We are open to any ideas, wished coming from you.

Usage:

Tag Cloud Example
< ?php
require_once(/path/to/TagCloud.class.php);

$tc = new TagCloud();

$tc->setMinFontSize(8);
$tc->setMaxFontSize(20);

$tc->setDistributionType(TC_RANDOM_DISTRIBUTION);

$tc->setDataClass(tags);

$tc->addData(love,10);
$tc->addData(sex,20);
$tc->addData(food,5);
$tc->addData(business,1);
$tc->addData(PHP,2);

$res = $tc->generate();

echo $res;
? >

Utility Example:

< ?php

require_once(/path/to/Utility.class.php);

$start_date = "September 21, 1999";
$end_date = "yesterday";

$u = new Utility();

$datediff = $u->getStyledDateDiff($start_date,$end_date);

$birthday = "11 January 1978";

$zodiacsign = $u->getZodiacSign($birthday);

echo $datediff;
echo "
";
echo $zodiacsign;

? >
<<less
Download (0.007MB)
Added: 2006-04-13 License: MIT/X Consortium License Price:
1292 downloads
fakedbfs 2.0.0

fakedbfs 2.0.0


fakedbfs is a suite of tools and a library for cataloguing files. more>>
fakedbfs is a suite of tools and a main library for cataloguing files. Anything that is a file can be catalogued along with metadata. The metadata is then searchable by various querying facilities. fakedbfs project uses SQLite to store and search data.
It is called "fakedbfs" (fake database filesystem) because its not a real DBFS such as the upcoming WinFS, or other OS-tied FSes that live in the kernel. Instead, it is completely in userland.
It was inspired by BFS (which doesnt do content indexing, only metadata). It is written completely in portable, ANSI C (barring the various bindings and other such utilities, or stuff using FTS and the stat(2) syscall [I plan on porting FTS as a built-in feature for platforms that dont support it]). If SQLite and a C compiler run on the platform, fakedbfs should be able to as well. In theory. Ish.
It was primarily developed on FreeBSD.
The main library can be used by any application; full API docs should be coming soon (when I find the time). Applications are virtually unlimited: desktop music/photo indexing, server content indexing, etc.
The core fakedbfs distribution consists of the following:
libfakedbfs - the main library with all querying, indexing, and specfile functions. Has all SQLite bindings
fquery - a commandline utility to query the database.
findex - a commandline utility to index files and directories. This can be either run manually or from a cron job.
fcreatedb - the initial database creation and specfile adding utility.
feditdb - a utility to edit the database (not in 1.0, should be in 1.1)
Various default specfiles, defining what metadata the catalogue contains
Indexing consists of a couple parts. Theres the indexer itself, which does cataloguing of each file, and then there are the metadata plugins.
These plugins, designed specifically for certain specfiles, know how to extract metadata from the files themselves (for example ID3/EXIF tags, filename formats). findex can also ask the user for manual input for each field.
Enhancements:
- This release incorporates many new features and changes, such as a completely revamped API in libfakedbfs, the beginnings of support for ficl plugins, numerous bugfixes, the addition of a working fedit utility, database layout changes, and improvements to the querying subsystem.
<<less
Download (0.077MB)
Added: 2006-04-20 License: BSD License Price:
1282 downloads
DBD-InterBase 0.44

DBD-InterBase 0.44


DBD-InterBase is a Perl-DBI driver for the Firebird and InterBase Databases, written using the InterBase C API. more>>
DBD-InterBase is a Perl-DBI driver for the InterBase Databases and Firebird, written using the InterBase C API.

<<less
Download (0.082MB)
Added: 2006-04-28 License: GPL (GNU General Public License) Price:
1278 downloads
Lua-Sqlite3 0.4

Lua-Sqlite3 0.4


Lua-Sqlite3 project is a binding of Sqlite3 for Lua. more>>
Lua-Sqlite3 project is a binding of Sqlite3 for Lua.
Lua-Sqlite3 is unique in contrast to other database bindings that it consists of two layers.
The first layer translates the SQLite 3 implementations C API to Lua. The first layer is called the backend.
The second layers are frontend layers, written in Lua. These layers provide a nice and smart view of the database
Currently, Lua-Sqlite3 implements two frontends:
- A specialiced frontend which provides all sqlite3 capabilities.
- A LuaSQL compatible frontend as used on the Kepler Project.
Enhancements:
- Lua 5.1 support was added, and 5.0 is still supported.
- An autoconf configure script is provided.
<<less
Download (0.032MB)
Added: 2006-05-10 License: GPL (GNU General Public License) Price:
1263 downloads
mod_authn_dbi 0.9.0

mod_authn_dbi 0.9.0


mod_authn_dbi provides Authentication against an SQL database back-end. more>>
mod_authn_dbi provides Authentication against an SQL database back-end. mod_authn_dbi uses the application-independent abstraction layer provided by libdbi.

Database drivers for libdbi are provided by the libdbi-drivers, project. At the moment, drivers are provided for MySQL, PostgreSQL, SQLite and mSQL.

<<less
Download (0.15MB)
Added: 2006-05-15 License: GPL (GNU General Public License) Price:
1261 downloads
mod_dbi_pool 0.4.0

mod_dbi_pool 0.4.0


mod_dbi_pool provides database connection pooling services for other Apache Modules. more>>
mod_dbi_pool is an Apache module which provides database connection pooling services for other Apache Modules.

Using libdbi it allows other modules to have a dynamic pool of database connections for many common SQL Servers, including mSQL, MySQL, PostgreSQL, Oracle and SQLite.

<<less
Download (0.18MB)
Added: 2006-05-15 License: The Apache License 2.0 Price:
1257 downloads
DBD::SQLite 1.12

DBD::SQLite 1.12


DBD::SQLite is a Self Contained RDBMS in a DBI Driver. more>>
DBD::SQLite is a Self Contained RDBMS in a DBI Driver.
SYNOPSIS
use DBI;
my $dbh = DBI->connect("dbi:SQLite:dbname=dbfile","","");
SQLite is a public domain RDBMS database engine that you can find at http://www.hwaci.com/sw/sqlite/.
Rather than ask you to install SQLite first, because SQLite is public domain, DBD::SQLite includes the entire thing in the distribution. So in order to get a fast transaction capable RDBMS working for your perl project you simply have to install this module, and nothing else.
SQLite supports the following features:
- Implements a large subset of SQL92
See http://www.hwaci.com/sw/sqlite/lang.html for details.
- A complete DB in a single disk file
Everything for your database is stored in a single disk file, making it easier to move things around than with DBD::CSV.
- Atomic commit and rollback
Yes, DBD::SQLite is small and light, but it supports full transactions!
- Extensible
User-defined aggregate or regular functions can be registered with the SQL parser.
Theres lots more to it, so please refer to the docs on the SQLite web page, listed above, for SQL details. Also refer to DBI for details on how to use DBI itself.
<<less
Download (0.53MB)
Added: 2006-06-12 License: Perl Artistic License Price:
1244 downloads
FEAR::API 0.489

FEAR::API 0.489


FEAR::API is a tool that helps reduce the time you spend creating site scraping scripts. more>>
FEAR::API is a tool that helps reduce the time you spend creating site scraping scripts and helps you do it in a much more elegant way.
FEAR::API combines many strong and powerful features from various CPAN modules, such as LWP::UserAgent, Template::Extract, WWW::Mechanize, Encode, HTML::Parser, etc.
Enhancements:
- This release adds allow_domains() and deny_domains().
<<less
Download (0.068MB)
Added: 2006-06-27 License: Perl Artistic License Price:
1222 downloads
XML::Atom 0.19

XML::Atom 0.19


XML::Atom is an Atom feed and API implementation. more>>
XML::Atom is an Atom feed and API implementation.

SYNOPSIS

use XML::Atom;

Atom is a syndication, API, and archiving format for weblogs and other data. XML::Atom implements the feed format as well as a client for the API.
<<less
Download (0.058MB)
Added: 2006-06-30 License: Perl Artistic License Price:
1211 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5