Main > Free Download Search >

Free queries software for linux

queries

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 987
QueryXMMS 1.06

QueryXMMS 1.06


QueryXMMS (qxmms) is a small command line application that queries XMMS about what it is currently doing. more>>
QueryXMMS (qxmms) is a small command line application that queries XMMS about what it is currently doing. QueryXMMS is useful for writing scripts that react to the status of XMMS.

<<less
Download (0.012MB)
Added: 2006-10-17 License: GPL (GNU General Public License) Price:
1103 downloads
Be::Query 0.1

Be::Query 0.1


Be::Query is a Perl module to do a query for a given filesystem. more>>
Be::Query is a Perl module to do a query for a given filesystem.

SYNOPSIS

use Be::Query;
@files = Be::Query::Query($filesystem, $query);

do a Query for a given filesystem

USAGE

@files = Be::Query::Query("/boot", "name=lib*.so");

$filesystem is a path anywhere in the target filesystem; $query is a query construction, of the form attribute op value [connector attribute op value]

Such as (name = fido) || (size >= 500)

<<less
Download (0.003MB)
Added: 2007-04-12 License: Perl Artistic License Price:
925 downloads
DTI-Query 1.1 Beta

DTI-Query 1.1 Beta


DTI-Query allows neuroscientists to place and interactively manipulate box-shaped regions... more>>
DTI stands for Diffusion Tensor Imaging and is a magnetic resonance imaging method that can be used to measure local information about the structure of white matter pathways within the human brain. Combining DTI data with the computational methods of MR tractography, neuroscientists can estimate the locations and sizes of nerve bundles (white matter pathways) that course through the human brain. DTI-Query allows neuroscientists to place and interactively manipulate box-shaped regions (or volumes of interest) to selectively display pathways that pass through specc anatomical areas.
Enhancements:
- Improved support for tensor data formats. (Now supports 5D tensor files, and arbitrary ordering of tensor indices.) Has been tested with tensor image files output by the AFNI tools: http://afni.nimh.nih.gov/sscc/dglen/DTIQuery
- Support for Mac OS X (Carbon)
- Binaries released for Windows, Linux (32- and 64-bit), and MacOS X (PPC and Intel)
- Added choice of integration method (Eulers method, Runge Kutta 2nd order, Runge Kutta 4th order) for STT tracking.
- Improved support for reading NIFTI background images (correctly handles q-form/s-form matrices).
- Can now save visible pathways (as a binary format, or as a NIFTI mask image).
- Many minor GUI enhancements and bug-fixes.
<<less
Download (MB)
Added: 2007-06-26 License: Freely Distributable Price:
850 downloads
Text::Query::BuildSQL 0.09

Text::Query::BuildSQL 0.09


Text::Query::BuildSQL is a base class for SQL query builders. more>>
Text::Query::BuildSQL is a base class for SQL query builders.

SYNOPSIS

package Text::Query::BuildSQLsqldb;

use Text::Query::BuildSQL;

use vars qw(@ISA);

@ISA = qw(Text::Query::BuildSQL);

Defines all the build_* functions to build a syntax tree. The tree nodes are [ operator scope operand operand... ]. The build_final_expression function translate the syntax tree in a where clause using the resolve method. If the scope of the search is not specified (simple query or advanced query without scope operator), the scope is set to the list of comma separated fields provided by the -fields_searched option. The resulting where clause is placed in the select order provided with the -select option, if any.

SYNTAX TREE

The string enclosed in single quotes must match exactly. The < string > token stands for an arbitrary string. A description enclosed in [something ...] means repeated 0 or N times.

expr: or scope expr [expr ...]
and scope expr [expr ...]
not scope expr
near scope expr_literal expr_literal
forbiden scope expr_literal [expr_literal ...]
mandatory scope expr_literal [expr_literal ...]
optional scope expr_literal [expr_literal ...]
literal scope < string >

expr_literal: literal scope < string >

scope: < string >

METHODS

resolve([], Q1)

Returns a where clause string corresponding to the Q1 syntax tree.

sortplusminus([], Q1)

Translate the mandatory and forbiden syntactic nodes to their boolean equivalents. If it has_relevance returns false and there is at least one mandatory word, the first mandatory word is added to the list of optional words.

has_relevance()

Returns true if relevance ranking is possible, false if not. It is used by the sortplusminus function. Returns false by default.

If relevance ranking is not possible, the semantic of the simple search is slighthly modified. When asking for +a b c it shows all the documents containing a and (b or c).

The normal behaviour is to return all the documents containing a and to sort them to show first those containing (b or c). When relevance ranking is not available the b, c search terms are therefore useless. That is why we decided to change the semantic of the query if no relevance ranking is available.

OPTIONS

-select STRING

If provided the string returned by build_final_expression substitutes the __WHERE__ tag with the where string generated by the resolve function. The substituted string is the return value of the build_final_expression.

If not set the return value of the build_final_expression is the result of the resolve function.

-fields_searched FIELDS_LIST

FIELDS_LIST is a list of comma separated field names. It is used as the default scope if no scope is provided in the query string. The build_final_expression function will croak if this option is not provided and no scope operator were used.

<<less
Download (0.019MB)
Added: 2007-07-28 License: Perl Artistic License Price:
823 downloads
MySQL Query 4.0

MySQL Query 4.0


MySQL Query is a software web development. more>>
MySQL Query is a software web development.

You need MySQL installed in your PC.

<<less
Download (0.52MB)
Added: 2006-09-12 License: GPL (GNU General Public License) Price:
660 downloads
Practical Query Analyzer 1.6

Practical Query Analyzer 1.6


Practical Query Analyzer produces HTML reports on query statistics. more>>
Practical Query Analyzer produces HTML reports on the most frequent queries, slowest queries, queries by type (select/insert/update/delete), and more for both PostgreSQL and MySQL log files.

<<less
Download (0.05MB)
Added: 2005-11-28 License: BSD License Price:
1428 downloads
OurNet::Query 1.56

OurNet::Query 1.56


OurNet::Query is a Perl module for scriptable queries with template extraction. more>>
OurNet::Query is a Perl module for scriptable queries with template extraction.

SYNOPSIS

use OurNet::Query;

# Set query parameters
my ($query, $hits) = (autrijus, 10);
my @sites = (google, google); # XXX: write more templates!
my %found;

# Generate a new Query object
my $bot = OurNet::Query->new($query, $hits, @sites);

# Perform a query
my $found = $bot->begin(&callback, 30); # Timeout after 30 seconds

print *** . ($found ? $found : No) . match(es) found.;

sub callback {
my %entry = @_;
my $entry = %entry;

unless ($found{$entry{url}}) {
print "*** [$entry->{title}]" .
" ($entry->{score})" .
" - [$entry->{id}]n" .
" URL: [$entry->{url}]n";
}

$found{$entry{url}}++;
}

This module provides an easy interface to perform multiple queries to internet services, and wraps them into your own format at once. The results are processed on-the-fly and are returned via callback functions.

Its interfaces resembles that of WWW::Searchs, but implements it in a different fashion. While WWW::Search relies on additional subclasses to parse returned results, OurNet::Query uses site descriptors for search search engine, which makes it much easier to add new backends.

Site descriptors may be written in XML, Template toolkit format, or the .fmt format from the commercial Inforia Quest product.

<<less
Download (0.063MB)
Added: 2006-12-04 License: Perl Artistic License Price:
1054 downloads
Relations::Query 0.93

Relations::Query 0.93


Relations::Query is a Perl Object for building queries with DBI/DBD::mysql. more>>
Relations::Query is a Perl Object for building queries with DBI/DBD::mysql.

SYNOPSIS

# Relations::Query Script that creates some queries.

use Relations::Query;

$query = new Relations::Query(-select => {fife => barney},
-from => {green_teeth => moogoo},
-where => "flotsam>jetsam",
-group_by => "denali",
-having => {fortune => cookie},
-order_by => [was,is,will],
-limit => 1);

$get_query = $query->get();

$query->set(-select => {clean => sparkle},
-from => {lean => book},
-where => "fighting is between courage and chaos",
-limit => 123);

$set_query = $query->get();

$get_add_query = $query->get_add(-select => {mean => dog},
-where => "running is null",
-having => {kitties=> on_tv},
-limit => [9678]);

$query = to_string({select => this,
from => that});

<<less
Download (0.010MB)
Added: 2006-09-02 License: Perl Artistic License Price:
1147 downloads
MySQL Query Browser 1.1.18

MySQL Query Browser 1.1.18


MySQL Query Browser is a database querying tool. more>>
MySQL Query Browser is a database querying tool.

MySQL Query Browser combines the simplicity of a Web-browser-like interface with powerful features like multiple result sets on tab sheets, query history, storing query "bookmarks", editing and comparing resultsets, SQL script debugging, and more.

MySQL Query Browser is available under the MySQL AB "dual licensing" model. Under this model, users may choose to use MySQL products under the free software/opensource GNU General Public License (commonly known as the "GPL") or under a commercial license.
<<less
Download (3.4MB)
Added: 2006-02-14 License: GPL (GNU General Public License) Price:
810 downloads
pgFouine 1.0

pgFouine 1.0


pgFouine is a PostgreSQL log analyzer. more>>
pgFouine is a PostgreSQL log analyzer. It allows you to have a clear overview of your database activity, and can generate reports with slowest queries, most frequent queries, errors, graphs, and so on.

pgFouine is written in PHP and is designed to parse huge log files with a low memory footprint.

Example:
pgfouine.php -file path/to/your/log/file.log > report.html

For comprehensive usage information, just run:

pgfouine.php -help
<<less
Download (0.24MB)
Added: 2007-04-02 License: GPL (GNU General Public License) Price:
941 downloads
SQuaLe 0.1.7

SQuaLe 0.1.7


SQuaLe provides an easy and very fast way to send SQL queries to a database backend. more>>
SQuaLe provides an easy and very fast way to send SQL queries to a database backend. SQuaLe project supports load balancing over multiple connections which can be on different servers.
Its very stable and provides statistics, control, and reporting through specific orders (like starting up a connection pool, shutting it down, getting statistics from that specific pool or for the whole SQuaLe instance).
Enhancements:
- This release adds a python DBI wrapper and a better reconnection mechanism.
- SQuaLe will now try to reconnect to the database even if it fails at startup.
<<less
Download (0.43MB)
Added: 2006-08-21 License: GPL (GNU General Public License) Price:
1159 downloads
Query Object Framework 0.7.2

Query Object Framework 0.7.2


QOF, the Query Object Framework, provides a set of C Language utilities for performing generic structured complex queries. more>>
QOF, the Query Object Framework, provides a set of C Language utilities for performing generic structured complex queries on a set of data held by a set of C/C++ objects.
Query Object Framework is unique in that it does NOT require SQL or any database at all to perform the query. Thus, it allows programmers to add query support to their applications without having to hook into an SQL Database.
Typically, if you have an app, and you want to add the ability to show a set of reports, you will need the ability to perform queries in order to get the data you need to show a report.
Of course, you can always write a set of ad-hoc subroutines to return the data that you need. But this kind of a programming style is not extensible: just wait till you get a user who wants a slightly different report.
The idea behind QOF is to provide a generic framework so that any query can be executed, including queries designed by the end-user.
Normally, this is possible only if you use a database that supports SQL, and then only if you deeply embed the database into your application. QOF provides simpler, more natural way to work with objects.
Enhancements:
- This release adds KVP_TYPE_BOOLEAN support, extensible error handling, and new Brazilian Portuguese and Indonesian translations.
- It fixes doxygen support (so that it can be disabled cleanly) and a sqlite error that resulted in spurious temporary files.
- It improves speed in the sqlite backend, packages the .pot file directly, and removes AM_MAINTAINER_MODE.
- QofError is designed for user-friendly messages and supports setting errors and error messages on-the-fly to provide user error messages that are as detailed, relevant, and helpful as possible.
<<less
Download (0.68MB)
Added: 2006-12-30 License: GPL (GNU General Public License) Price:
1028 downloads
Remote MySQL Query 1.0

Remote MySQL Query 1.0


Remote MySQL Query is a PHP class that can easily execute queries on a remote MySQL server using only HTTP. more>>
Remote MySQL Query is a PHP class that can easily execute queries on a remote MySQL server using only HTTP.

It works by accessing a PHP script on the remote web server that executes queries based on passed in URL parameters.

The client passes a secret key to the remote script to prevent unauthorized access.

The remote script passes back the results to the requesting client using XML to marshal the data.

The class parses the results XML data returned by the server script and returns an array.

It, also, retrieves (into class variables) the number of records returned by the query and the time the query took to execute.

The server script may be used to execute MySQL queries that can be retrieved by programs written in other languages besides PHP.

<<less
Download (MB)
Added: 2007-07-23 License: Freely Distributable Price:
828 downloads
Mergeant 0.66

Mergeant 0.66


Mergeant is a database administration tool. more>>
Mergeant is a database administration tool.

Mergeant allows to connect to any database through the Libgda library (MySQL, PostgeSQL, Oracle, etc) and manage data within the database.

Any DML (data manipulation: insertion, update, deletion and selection) query can be created to help managing the data (queries can have optionnal parameters), from SQL statements or from a GUI interface.

The database structure (tables, data types, etc) can be browsed (modification is on the TODO list), and graphical representations of the database relations can be created.

<<less
Download (0.93MB)
Added: 2007-03-25 License: GPL (GNU General Public License) Price:
943 downloads
mezoGIS 0.1.5

mezoGIS 0.1.5


mezoGIS is a GIS application, a graphical interface to query and analyse spatial data. more>>
mezoGIS project is a GIS application, a graphical interface to query and analyse spatial data. mezoGIS does not store or compute data directly, but operates external PostGIS databases. The goal of mezoGIS is to provide a tool for geo-spatial analysis with PostGIS, through on-the-fly SQL queries as well as through larger, external plugin scripts.
There are other, excellent open source applications that can display PostGIS data sets (like QGis or GRASS). Those projects, however, expect properly indexed tables as an input, and dont provide a built in functionality to launch SQL queries. The focus of mezoGIS is to stay close to the SQL workflow: Spatial queries are launched through manually entered SQL commands, and result sets containing geometry are displayed as map layers.
The first public release of mezoGIS was in march 2006. mezoGIS is entirely written in the python programming language, for gtk+. It works fine on the GNOME Desktop on linux, and has not yet been tested on other desktops or platforms.
Main features:
- Fast SQL queries: SQL commands and queries can be entered and sent to PostGIS within mezoGIS. Common SQL tasks and commands can also be accessed though context menues.
- View any kind of result: SQL queries yield result tables. If such a table contains geometric data, mezoGIS will display it in a map. There is no need to copy the data into a table or to create spatial indices. This is very useful for on-the-fly geoanalysis.
- Map creation: Result sets can be overlayed and layouted to create elaborate maps, the display engine currently has rough support for transparent colours, line styles, and symbols.
- Plugin engine: Plugin scripts written in python can be loaded and executed. The API is only a very rudimentary implementation, and will be subject to substantial change.
- XML file format: Projects are saved into an XML file format. The data itself is not stored, and must be reloaded from the database after loading.
<<less
Download (0.25MB)
Added: 2006-06-26 License: GPL (GNU General Public License) Price:
1215 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5