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
SQLite Manager 0.5.0 Beta 3

SQLite Manager 0.5.0 Beta 3


SQLite Manager is an all-in-one and very useful application which can manage all your sqlite databases using this lightweight extension for firefox, thunderbird, sunbird, seamonkey, songbird, komodo, flock etc. more>> <<less
Added: 2009-07-23 License: MPL Price: FREE
62 downloads
 
Other version of SQLite Manager
SQLite Manager 0.5.0 Beta 3Mrinal Kant - and extremely useful program which offers an easy way to manage all your sqlite databases using
Price: FREE
License:MPL
Download
62 downloads
Added: 2009-07-23
Datashaping 0.3.2

Datashaping 0.3.2


A pythonic query API for structured data more>>

Datashaping 0.3.2 is a useful program which provides very simple pythonic API allowing for complex queries on structured data.

Currently supported are lists of dictionaries. Nested structures (dictionaries, lists) are also indexed and can be queried.

<<less
Added: 2009-07-14 License: LGPL Price: FREE
11 downloads
SQLite for Linux 3.5.4

SQLite for Linux 3.5.4


an ACID-compliant relational database management system more>> SQLite is a in-process library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine. The code for SQLite is in the public domain and is thus free for use for any purpose, commercial or private. SQLite is currently found in more applications than we can count, including several high-profile projects.
SQLite is an embedded SQL database engine. Unlike most other SQL databases, SQLite does not have a separate server process. SQLite reads and writes directly to ordinary disk files. A complete SQL database with multiple tables, indices, triggers, and views, is contained in a single disk file. The database file format is cross-platform - you can freely copy a database between 32-bit and 64-bit systems or between big-endian and little-endian architectures. These features make SQLite a popular choice as an Application File Format. Think of SQLite not as a replacement for Oracle but as a replacement for fopen()
SQLite is a compact library. With all features enabled, the library size can be less than 250KiB, depending on compiler optimization settings. (Some compiler optimizations such as agressive function inlining and loop unrolling can cause the object code to be much larger.) If optional features are omitted, the size of the SQLite library can be reduced below 180KiB. SQLite can also be made to run in minimal stack space (16KiB) and very little heap (100KiB), making SQLite a popular database engine choice on memory constrained gadgets such as cellphones, PDAs, and MP3 players. There is a tradeoff between memory usage and speed. SQLite generally runs faster the more memory you give it. Nevertheless, performance is usually quite good even in low-memory environments.
<<less
Download (178KB)
Added: 2009-04-14 License: Freeware Price: Free
195 downloads
FastDB(liunx) 3.49

FastDB(liunx) 3.49


Main Memory Relational Database Management System more>> Main Memory Relational Database Management System
Fastest query execution
Post-relational features
Tight integration with C++
Automatic scheme evaluation
Efficient log-less transactions
Zero time recovery
Fault tolerance
C, C++, Delphi/Kylix API
<<less
Download (983KB)
Added: 2009-04-04 License: Freeware Price: Free
204 downloads
SQLite 3.4.2

SQLite 3.4.2


SQLite is an embeddable SQL engine in a C library. more>>
SQLite is a small C library that implements a self-contained, embeddable, zero-configuration SQL database engine.
Main features:
- Transactions are atomic, consistent, isolated, and durable (ACID) even after system crashes and power failures.
- Zero-configuration - no setup or administration needed.
- Implements most of SQL92. (Features not supported)
- A complete database is stored in a single disk file.
- Database files can be freely shared between machines with different byte orders.
- Supports databases up to 2 terabytes (241 bytes) in size.
- Sizes of strings and BLOBs limited only by available memory.
- Small code footprint: less than 30K lines of C code, less than 250KB code space (gcc on 486)
- Faster than popular client/server database engines for most common operations.
- Simple, easy to use API.
- TCL bindings included. Bindings for many other languages available separately.
- Well-commented source code with over 95% test coverage.
- Self-contained: no external dependencies.
- Sources are in the public domain. Use for any purpose.
The SQLite distribution comes with a standalone command-line access program (sqlite) that can be used to administer an SQLite database and which serves as an example of how to use the SQLite library.
Create A New Database:
- At a shell or DOS prompt, enter: "sqlite3 test.db". This will create a new database named "test.db". (You can use a different name if you like.)
- Enter SQL commands at the prompt to create and populate the new database.
Write Programs That Use SQLite
Below is a simple TCL program that demonstrates how to use the TCL interface to SQLite. The program executes the SQL statements given as the second argument on the database defined by the first argument. The commands to watch for are the sqlite3 command on line 7 which opens an SQLite database and creates a new TCL command named "db" to access that database, the invocation of the db command on line 8 to execute SQL commands against the database, and the closing of the database connection on the last line of the script.
#!/usr/bin/tclsh
if {$argc!=2} {
puts stderr "Usage: %s DATABASE SQL-STATEMENT"
exit 1
}
load /usr/lib/tclsqlite3.so Sqlite3
sqlite3 db [lindex $argv 0]
db eval [lindex $argv 1] x {
foreach v $x(*) {
puts "$v = $x($v)"
}
puts ""
}
db close
<<less
Download (2.1MB)
Added: 2007-08-14 License: Public Domain Price:
551 downloads
OpenDBX 1.3.4

OpenDBX 1.3.4


OpenDBX is an extremely lightweight but extensible C library for accessing databases with a single API. more>>
OpenDBX is an extremely lightweight but extensible C library for accessing databases with a single API.
OpenDBX provides a clean and simple interface across all supported databases that leads to an elegant code design automatically. Currently supported databases are:
- Firebird
- Interbase
- MS SQL Server
- MySQL
- PostgreSQL
- SQLite
- SQLite3
- Sybase
Backends for more native database APIs can be written easily. If you want your application to support different databases with little effort, this is definitively the right thing for you!
Enhancements:
- This release adds the C++ interface for the large object functions, the missing Conn::getCapability() member function, and the regression test code for libopendbxplus.
- For more control over loading the backend modules, its now possible to supply the full path to the backend library as the first parameter to odbx_init().
- Also, there was a change of the parameter type of odbx_lo_open() as well as a change regarding the visibility of the C++ class variables.
- Finally, the pgsql backend returned partly wrong results for boolean values if odbx_field_value() was called twice. This is fixed now.
<<less
Download (0.48MB)
Added: 2007-08-08 License: LGPL (GNU Lesser General Public License) Price:
807 downloads
Google Data Objective-C Client 1.1.0

Google Data Objective-C Client 1.1.0


Google Data Objective-C Client provides a framework and source code that make it easy to access data through Google Data APIs. more>>
Google Data Objective-C Client provides a framework and source code that make it easy to access data through Google Data APIs.
The Google data APIs provide a simple protocol for reading and writing data on the web. Many Google services provide a Google data API.
Each of the following Google services provides a Google data API:
- Base
- Blogger
- Calendar
- Spreadsheets
- Picasa Web Albums
- Notebook
Additional services with Google data APIs that are not yet supported by the Objective-C Client Library:
- Code Search
- Google Apps Provisioning
<<less
Download (0.60MB)
Added: 2007-08-08 License: The Apache License 2.0 Price:
810 downloads
Pwytter 0.6

Pwytter 0.6


Pwytter is a standalone Twitter GUI client. more>>
Pwytter is a standalone Twitter GUI client. This application is intended to be multi-platform.
Main features:
- Asynchronous Image loading
- Better UI response
- Less twitter API call (internal caching)
<<less
Download (0.044MB)
Added: 2007-07-26 License: GPL (GNU General Public License) Price:
820 downloads
QCat 0.5

QCat 0.5


Qcat is a simple media catalog. more>>
Qcat is a simple media catalog. It can import data from WhereIsIt. The project is still in pre-alpha stage, so there are no sources available.

Compile:

1. download the source
2.untar it - tar -xzvf qcat-0.5-src.tar.gz
3. cd qcat-dist-0.5
4. here is the tricky part.

Perhaps you use QT 3.3.x. So to compile you have export QT_DIR and PATH for QT4.

Check where is installed QT4. For example if QT4 is in /opt/qt4 type these commands:

export QT_DIR=/opt/qt4
export PATH=/opt/qt4/bin:$PATH

5. run qmake
6. make
7. If all is ok, the result shall be an executable file in qcat-dist-0.5/bin named qcat
8. run it and enjoy.

Installation:

Ive not written any install target, script or so on, so you can just copy "qcat" file somewhere in you path. The install script/target is is in my TODO list.

Some instructions:

This program use SQlite for db backend. During its first run it will create file in ~/.config/QCat in which it will store the configuration. Also it will create your first catalog in your home directory. It will be named defaultCatalog.qcat.

If you want to make shortcut for your CD/DVD drive, go to Tools - Manage Drives. There you can add alias for this drive or any other folder. If you chose that this is optical drive, you have to specify its drive node in /dev/ so the program can read CD/DVD label and mount/unmount the media in it.

In Tools - Manage Icons you can change some of the default icons. They are stored in DB.

Import menu - here you can try to import WhereIsIt xml file. Please notify that if you have groups defined in WhereIsIt file, the hierarchy will be lost. (WherIsIt do not export it), so you have to arrange your disks again. You can use Drag and Drop. At this point only Disk Groups and Disks can be moved.

Saving - there is no need to save your changes, They are committed instantly. Shame on me. I havent write transactions yet.

Locking the catalog - Select catalog properties and click Lock icon. Please note that the passwords are kept in plain text. Shame on me again, so you can just avoid password protection and wait for some new version.

Feel free to explorer. It is almost certain there are plenty of bugs.

<<less
Download (0.23MB)
Added: 2007-07-19 License: GPL (GNU General Public License) Price:
834 downloads
Business::PayPal::API 0.50

Business::PayPal::API 0.50


Business::PayPal::API is a PayPal API. more>>
Business::PayPal::API is a PayPal API.

SYNOPSIS

use Business::PayPal::API qw( ExpressCheckout GetTransactionDetails );

## certificate authentication
my $pp = new Business::PayPal::API
( Username => my_api1.domain.tld,
Password => this_is_my_password,
PKCS12File => /path/to/cert.pkcs12,
PKCS12Password => (pkcs12 password),
sandbox => 1 );

## PEM cert authentication
my $pp = new Business::PayPal::API
( Username => my_api1.domain.tld,
Password => this_is_my_password,
CertFile => /path/to/cert.pem,
KeyFile => /path/to/cert.pem,
sandbox => 1 );

## 3-token (Signature) authentication
my $pp = new Business::PayPal::API
( Username => my_api1.domain.tld,
Password => Xdkis9k3jDFk39fj29sD9, ## supplied by PayPal
Signature => f7d03YCpEjIF3s9Dk23F2V1C1vbYYR3ALqc7jm0UrCcYm-3ksdiDwjfSeii, ## ditto
sandbox => 1 );

my %response = $pp->SetExpressCheckout( ... );

<<less
Download (0.030MB)
Added: 2007-07-18 License: Perl Artistic License Price:
838 downloads
PySQLite 2.3.5

PySQLite 2.3.5


pysqlite is a Python DB-API 2.0 interface for the SQLite embedded relational database engine. more>>
pysqlite is a Python DB-API 2.0 interface for the SQLite embedded relational database engine.
Enhancements:
- pysqlite is now 2.5 times faster for DML statements.
- This pays off especially for bulk-loading data.
- pysqlite now recognizes if the database engine has done an implicit ROLLBACK and acts accordingly.
- Using custom mapping and sequence types in parameters works now.
<<less
Download (0.083MB)
Added: 2007-07-18 License: zlib/libpng License Price:
517 downloads
Gtk2::api 1.145

Gtk2::api 1.145


Gtk2::api is a mapping the Gtk+ C API to perl. more>>
Gtk2::api is a mapping the Gtk+ C API to perl.

ABSTRACT
The Gtk2 module attempts to stick as close as is reasonable to the C API, to minimize the need to maintain documentation which is nearly a copy of the C API reference documentation. However, the world is not perfect, and the mappings between C and perl are not as clean and predictable as you might wish. Thus, this page described the basics of how to map the C API to the perl API, and lists various points in the API which follow neither the C API documentation nor the mapping principles.

The canonical documentation is the C API reference at http://developer.gnome.org/doc/API/gtk/ and http://developer.gnome.org/doc/API/gdk/
There are two main sections: BINDING BASICS describes the principles on which the bindings work; understanding these can lead you to guess the proper syntax to use for any given function described in the C API reference.

The second section lists various specific points of difference which dont necessarily correspond with what you expect; this section is in three main parts: missing methods, renamed methods, and different call signatures.

<<less
Download (0.64MB)
Added: 2007-07-16 License: Perl Artistic License Price:
832 downloads
libviper 1.1.1

libviper 1.1.1


libviper is an API for quickly developing console, curses-based interfaces with mouse support (GPM). more>>
libviper is an API for quickly developing console, curses-based interfaces with mouse support (GPM). Its a good alternative to the panels library.

The API preserves many of the familiar ncurses monikers. The project also provides, basic, GTK-like window signal handling.

<<less
Download (0.025MB)
Added: 2007-07-11 License: GPL (GNU General Public License) Price:
835 downloads
Asterisk Soap API 0.0.1 Alpha

Asterisk Soap API 0.0.1 Alpha


Asterisk Soap API is an extensible SOAP (Web services) API with the goal to create and support all Asterisk configuration featur more>>
Asterisk-Soap is an extensible SOAP (Web services) API with the goal to create and support all Asterisk configuration features.

Asterisk Soap APIs mainly feature is to provide a framework between asterisk core api and multi-platform frontends.
<<less
Download (MB)
Added: 2007-07-05 License: GPL (GNU General Public License) Price:
847 downloads
SQLiteJDBC 034

SQLiteJDBC 034


SQLiteJDBC supports the most commonly used features of JDBC that can be efficiently implemented on top of SQLite. more>>
SQLiteJDBC is a JDBC driver for SQLite which is written as a Java JNI layer over the SQLite 3.3.x API.

SQLiteJDBC supports the most commonly used features of JDBC that can be efficiently implemented on top of SQLite. Only a single native JNI library is required, and SQLite is compiled in.

Binaries are provided for Linux, Mac OS X, and Windows.

<<less
Download (0.13MB)
Added: 2007-06-19 License: BSD License Price:
521 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5