Main > Free Download Search >

Free convert int to varchar in sql query software for linux

convert int to varchar in sql query

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2790
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
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
ZZEE Active SQL Backup 0.9.2

ZZEE Active SQL Backup 0.9.2


ZZEE Active SQL Backup can perform *incremental* backup of MySQL database. more>>
Since MySQL is the most popular SQL server that is used in conjunction with web sites, there was a need for incremental backup utility. ZZEE Active SQL Backup is designed for clients of web hosting companies, and can be useful to system administrators as well.
Main features:
- Can perform *incremental* backup of MySQL database
- Can perform full backup of MySQL database
- Can replicate database
- Can process SQL queries
- Can dump database structure
- Can suggest database changes needed to process incremental backup
- Can send data backed up by email
- Can transfer backed up data by FTP to other computer (if Net::FTP is installed)
- Can compress backed up data
Usage synopsis
Active SQL Backup can do incremental or full backups of MySQL database as often as needed. It is suitable both for the clients of web hosting companies who can not get access to MySQL update logs and for the host administrators. Backup syntax is:
shell> ./zmdb.pl -b
It stores backup files in BACKUP_DIR, specified in user_settings.txt, named like YYYY_MM_DD_hh_mm_ss.sql[.gz]. The backup files consist of series of SQL INSERT statements and may contain DELETE statements. The database scheme is stored in file database_name.create.sql. If gzip is available, then Active SQL Backup automatically uses it to compress stored data. The program can automatically send backed up files by email or upload to the other computer by FTP.
If the system fails, Active SQL Backup can restore the database. Restore syntax for incremental backups is:
shell> ./zmdb.pl -r
If you make full backups, restore syntax is the following:
shell> ./zmdb.pl -e < BACKUP_DIR/database_name.create.sql
shell> ./zmdb.pl -e < BACKUP_DIR/YYYY_MM_DD_hh_mm_ss.sql &
The first line is needed to restore database structure, and the second is the *most recent* data file. You may need to "gunzip" it before supplying to restore.
You can use the program to dump database structure
shell> ./zmdb.pl -s > structure_dump_file
or to process queries. The latter feature is useful if you need to process queries regularly, for example, to update membership status of the users of your online service. The syntax to execute SQL queries is:
shell> ./zmdb.pl -e < some_sql_file
Where format of some_sql_file is the same as with Mysql utility: SQL statements are separated by semicolon. Note that if you pass SELECT queries to Active SQL Backup, then no result will be returned.
Syntax summary is:
zmdb.pl [SINGLE_OPTION]
-a --advice suggest database modifications and tables_config.txt
-b --backup backup database structure and data
-e --execute execute SQL queries [from STDIN]
-h --help print this screen
-r --restore restore database structure and data
-s --structure dump database structure [to STDOUT]
<<less
Download (0.027MB)
Added: 2006-03-08 License: Other/Proprietary License Price:
1325 downloads
Template::Plugin::JavaSQL 0.4

Template::Plugin::JavaSQL 0.4


Template::Plugin::JavaSQL is a Perl module to help generate Java from database schemas. more>>
Template::Plugin::JavaSQL is a Perl module to help generate Java from database schemas.

SYNOPSES

Within an XML file processed by the Java plugin:
< sql:
query="select foo as f, bar as b from some_table"
>

or

< sql:
table="some_table"
>
Via a template such as:
[% USE Java %]
[% Use JavaSQL %]
...
String query =
"select [% JavaSQL.columnNames.join(", ") %] from [% JavaSQL.tables.join(", ") %]";
[% IF JavaSQL.where %]
query += " where [% JavaSQL.where %] ";
[% ELSE %]
query += " where 0=0 ";
[% END %]
[% FOREACH JavaSQL.columns %]
if (${varName}Set) { query += " and $name = ?"; }
[% END %]
[% IF JavaSQL.order %]
query += "order by [% JavaSQL.order %]";
[% END %]
stmt = myConnection.prepareStatement(query);

Just use the DBClass.template from the distribution for fully functional database classes.

In addition to methods that refer to parts of a SQL query, any columns resultant from the query or table will be added as java variables to the variables hash, with close-as-possible mapped types.

<<less
Download (0.018MB)
Added: 2006-11-01 License: Perl Artistic License Price:
1087 downloads
DB_DataContainer 1.3.1

DB_DataContainer 1.3.1


DB_DataContainer is a PEAR compliant database persistence layer and data encapsulation class. more>>
DB_DataContainer is a PEAR compliant database persistence layer and data encapsulation class. A persistence layer can encapsulate the behaviour needed to make objects persistent like for exemple: to load, save and delete objects to and from persistent storage. Currently the only supported persistence mechanisms are relational databases. Database abstraction is provided by PEAR DB.
Data encapsulation is provided by overloaded accessor methods. This means that if you have a property named $foo and you do not write getFoo() and setFoo() methods in the extending class yourself, they will be automatically provided by DB_DataContainer.
As a result of the provided persistence mechanism and data encapsulation DB_DataContainer together with few lines of extra code can be used to implement the Active Record Pattern as described by Martin Fowler:
An object that wraps a row in a database table or view, encapsulates the database access, and adds domain logic on that data.
The class does not use any external configuration files. The extending class itself IS the configuration. All you need to take care about is to have matching propertyname - columname pairs in the class and the database table.
If your database schema changes, for example you add an column foo to the table, all you need to do is to add a property name foo to your class which extends DB_DataContainer. There is no need to rewrite any internal SQL queries.
The class does not provide direct support for JOIN:s or table linking. For extreme cases it is still possible to pass hardcoded SQL queries. This usage is discouraged since it breaks the basic idea of using DB_DataContainer.
Main features:
- Simple API
- Persistence mechanism encapsulation. You only need to call load(), save() or delete(). Note that there are no separate methods for INSERT and UPDATE. save() figures itself out which query to use.
- Overloaded accessor methods for class properties without such methods.
- PEAR DB supported databases as persistence mechanisms (tested with Postgres, MySQL, MSSQL and SQLite).
- Multi-object actions provided by a static getObjects() call.
- Possibility to use hardcoded SQL queries in multi-object actions.
- Regression tests.
- Supports PHP4 and PHP5 (starting from version 1.3.0)
Enhancements:
- This release fixes problems with protected and private data members when using PHP5.
<<less
Download (0.009MB)
Added: 2005-12-22 License: BSD License Price:
1403 downloads
RitmarkFS 0.4.1

RitmarkFS 0.4.1


RitmarkFS is an open source filesystem storage engine for MySQL server. more>>
RitmarkFS is an open source filesystem storage engine for MySQL server. Using this engine you can work with filesystem on the server with SQL queries and MySQL server interface.RitmarkFS is also possible to access raw file contents.
RitmarkFS allows you to access common file attributes such as name, extension, path, size.
To start using RitmarkFS storage engine you have to create a special table.
Table name specifies filesystem mount point. I.e all data under that mount point will be accessible by the specified table name. In the examples above these were c:ritmarktest and /home/your_home_dir respectively. For example if you run a query like
SELECT * FROM `c$$ritmarktest`;
the query result will contain records corresponding to all files under c:ritmarktest recursively.
Enhancements:
- added structured driver for XML
- added XML dump utility
- documentation update
<<less
Download (25MB)
Added: 2006-11-21 License: GPL (GNU General Public License) Price:
1067 downloads
RitmarkFS FTP 0.1

RitmarkFS FTP 0.1


RitmarkFS is an open source filesystem storage engine for MySQL server. more>>
RitmarkFS is an open source filesystem storage engine for MySQL server. Using this engine you can work with filesystem on the server with SQL queries and MySQL server interface.RitmarkFS is also possible to access raw file contents.

RitmarkFS allows you to access common file attributes such as name, extension, path, size.

To start using RitmarkFS storage engine you have to create a special table.

Table name specifies filesystem mount point. I.e all data under that mount point will be accessible by the specified table name. In the examples above these were c:ritmarktest and /home/your_home_dir respectively. For example if you run a query like

SELECT * FROM `c$$ritmarktest`;

the query result will contain records corresponding to all files under c:ritmarktest recursively.

<<less
Download (0.24MB)
Added: 2006-06-13 License: GPL (GNU General Public License) Price:
1229 downloads
OpenLink Virtuoso Universal Server 5.0.1

OpenLink Virtuoso Universal Server 5.0.1


OpenLink Virtuoso is a Virtual Database product that provides transparent real-time access to disparate data sources. more>>
OpenLink Virtuoso is a Virtual Database product that provides transparent real-time access to disparate data sources (ODBC, JDBC, XML, and Web Services), and transparent integration of disparate application logic (e.g. Mono ECMA-CLI and J2EE integration). OpenLink Virtuoso Universal Servers broad protocol support enables it to offer Web, File, and SQL database server functionality alongside native XML storage, and Web services platform functionality as part of a cohesive single server solution.
Virtuoso is at the core a high performance object-relational SQL database. As a database, it provides transactions, a smart SQL compiler, powerful stored procedure language with optional Java and .Net server side hosting, hot backup, SQL 99 and more. It has all major data access interfaces, as in ODBC, JDBC, ADO .Net and OLE/DB.
Virtuoso has a built-in web server which can serve dynamic web pages written in Virtuosos web page language as well as PHP, ASP .net and others. This same web server provides SOAP and REST access to Virtuoso stored procedures, supporting a broad set of WS protocols such as WS-Security, WS-Reliable Messaging and others. A BPEL4WS run time is also available as part of Virtuosos SOA suite.
Virtuoso has a built-in WebDAV? repository. This can host static and dynamic web content and optionally provides versioning. The WebDAV? repository is tested to interoperate with WebDAV? clients built into Windows XP, Mac OSX and others and makes Virtuoso a convenient and secure place for keeping ones files on the net. Further, Virtuoso provides automatic metadata extraction and full text searching for supported content types.
Open Virtuoso supports SPARQL embedded into SQL for querying RDF data stored in Virtuosos database. SPARQL benefits from low-level support in the engine itself, such as SPARQL aware type casting rules and a dedicated IRI data type. This is the newest and fastest developing area in Virtuoso.
Enhancements:
- Enhanced cost-based optimizer
- Fixed cost calculation for RDF inf nodes
- Added larger sample in query cost model sampling
- Enhanced SPARQL support
- Added BREAKUP
- Added CONSTRUCT ... LIMIT ...
- Significant performance optimizations
- Added QUAD MAP { ... } group pattern
- Updated documentation
- Significant update of all ODS applications
- Added compliance to latest SIOC vocabulary
- Added calendar
- Added OpenID login and registration
- Added new SIOC subclasses to allow RDF inference
- Enhancements to existing applications
- Bug fixes
<<less
Download (42MB)
Added: 2007-05-31 License: GPL (GNU General Public License) Price:
884 downloads
QtSQL Browser 0.85

QtSQL Browser 0.85


QtSQL Browser is a generic GUI database browsing frontend. more>>
The purpose of this project is to provide a simple, generic GUI database browsing frontend. The tool is a very simple aggregation of the Qt database classes.
The database abstraction is provided by the Qt database drivers. So far, the drivers for PostgreSQL and MySQL have been found to work well.
In principle, there is no reason why ODBC drivers for popular databases such as Oracle, DB2, Informix as well as Firebird and SAP/DB shouldnt work via the Qt ODBC3 abstraction layer.
However, some preliminary tests with these have not been promising. It may be that the only way to get some of these working is to create a native Qt database driver. This is something Ill be looking into much later.
At the moment, it is only possible to build the system on Unix and similar systems. Since Trolltech have released a version of Qt for OSX under the GPL and have announced their intention to do likewise for Win32, it should be possible to provide ports for both of these platforms. For the moment though, I just provide the source.
Main features:
- Tree browser for databases and tables
- Display of table descriptions
- Display of table contents in main window
- Execution of ad-hoc SQL queries in the query tab
- Command line history in the query tab
- Retrieval of database connection details from XML config file
- Retrieval of other configuration parameters from XML config file
- Prompting for connection password
- Addition of new connections via GUI to the running application and the config file
- Display database views with a separate icon
- Create a connection name independent of the database name
- A "Test" button when creating a new connection
- Dynamically generate a list of available drivers
- Configuration via autoconf
- Fixed bug with executing updates/inserts twice
- Refreshing of a DB connection
- Deleting of connections via the GUI
- Editting of connections via the GUI
- Check for the existence of ~/.qtsql
- Creation of skeleton config file
- Auto saving/restoring of history
- Loading of queries
- Saving of results
- Keyboard shortcuts
<<less
Download (0.025MB)
Added: 2005-05-24 License: GPL (GNU General Public License) Price:
1619 downloads
Chemistry::SQL 0.01

Chemistry::SQL 0.01


Chemistry::SQL is an access database functions module. more>>
Chemistry::SQL is an access database functions module.

SYNOPSIS

use strict;
use Chemistry::SQL;
use Chemistry::Artificial::SQL;

my $db_name = $ARGV[0];
my $file = $ARGV[1];

my $db1 = Chemistry::SQL::new(db_host=>"127.0.0.1",db_user=>"root",db_port=>"3306",db_pwd=>"",
db_name=>$db_name,db_driver=>"mysql");
if ($db1->db_exist)
{ $db1->connect_db;
$db1->del_tables;
$db1->create_tables_mysql;
$db1->inscomp_from_file("$file");
}
else
{
$db1->create_db;
$db1->connect_db;
$db1->create_tables_mysql;
$db1->inscomp_from_file("$file");
}
# Reaction Insertion

my $qart = Chemistry::Artificial::SQL::new($db1);
my $qr =$qart->q_reaccion(C=CC=C.C=C>>C1=CCCCC1,smiles);
$db1->reactionsert($qr,"","0");

This package provides the necessary functions to interact with the database. The methods implemented in this module are oriented to give users control of the database without knowing how to use SQL queries.

<<less
Download (0.014MB)
Added: 2006-07-31 License: Perl Artistic License Price:
1185 downloads
Java embedded SQL(unix) 1.08

Java embedded SQL(unix) 1.08


Subset of SQL for specifying non-procedural queries for Java objects more>> Subset of SQL for specifying non-procedural queries for Java objects, index access based on T-Tree, parallel excecution of requests
JSQL is subset of SQL languages, which can be used to select objects instances according to selection condition. JSQL can be used for implementing personal minidatabase, as tool for dynamic compilation and execution of user requests. JSQL uses notation more popular for object-oriented programming then for relational database. Table rows are considered as object instances and the table - as class of these objects. Unlike SQL, JSQL is oriented on work with objects instead of SQL tuples. So the result of each query execution is a set of objects of one class. The main differences of JSQL from standard SQL are:
There are no joins of several tables and nested subqueries. Query always returns set of objects from one table.
Standard C types are used for atomic table columns.
There are no NULL values, except null references. I am completely agree with C.J. Date critics of three-value logic and his proposal to use default values instead.
Arrays can be used as record components. Special exists quantor is provided for locating element in arrays.
User methods can be defined for table records (objects) as well as for record components.
References between objects are supported including automatic support of inverse references.
As far as query language is deeply integrated with Java language, case sensitive mode is used for language identifiers as well as for keywords.
No implicit conversion of integer and floating types is done to string representation. If such conversion is need, it should be done explicitly.
<<less
Download (166KB)
Added: 2009-04-02 License: Freeware Price: Free
204 downloads
LiteSQL 0.3.2

LiteSQL 0.3.2


LiteSQL is a C++ library that integrates C++ objects tightly to relational database. more>>
LiteSQL is a C++ library that integrates C++ objects tightly to relational database and thus provides an object persistence layer.
LiteSQL supports SQLite3, PostgreSQL and MySQL as backends. LiteSQL creates tables, indexes and sequences to database and upgrades schema when needed.
LiteSQL provides object relations, in addition to object persistence which can be used to model any kind of C++ data structures. Objects can be selected, filtered and ordered using template- and class-based API with type checking at compile time.
Main features:
- SQLite3, PostgreSQL and MySQL - backend support
- object persistence layer with relation support
- automatic database schema creation and upgrading
- create complex SQL queries using compile time checked class API; minimizes need to write SQL query strings
<<less
Download (0.78MB)
Added: 2006-01-25 License: LGPL (GNU Lesser General Public License) Price:
1373 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
Simple RSS Service 0.3

Simple RSS Service 0.3


Simple RSS Service is a modular RSS feed generator. more>>
The Simple RSS Service (SRSSS) generates and serves RSS feeds through a common interface via CGI-enabled webservers. It uses modules to extract items for feeds from various sources, and has a virtual filesystem where feeds can be read by CGI-clients.
The package contains everything needed to start providing RSS feeds, including server and CGI programs, and has support for PostgreSQL, MySQL and MimerSQL.
Main features:
- Modular and clean design based on object oriented C++
- Resource-friendly functions that keeps the load down on web- and database-servers by only parsing data and generate new feeds when required, instead of at every request.
- Interface for run-time loading of modules for data-extraction
- A virtual filesystem stored in shared memory
- Feed extraction via CGI program for easy integration in any CGI-enabled webserver
- A trigger-system that allows external sources to trigger daemon software to fetch new updates
- Easy configuration via a configfiles
- Designed for easy integration towards SQL servers etc
- Support for NetBSD, FreeBSD, OpenBSD and Linux.
Modules:
These modules are currently available for RSS item extraction:
mod_pgsql
This module allows the RSS daemon (rssd) to extract items for RSS feeds from a PostgreSQL database. It can select an entire column as description field for the feed, or base it on a pre-formated string in which variables are replaced with values from columns returned in the SQL query.
This module also support triggering, where any client connected to the same database is able to trigger RSSD to fetch a new update via the SQL LISTEN and NOTIFY functions.
mod_mysql
This module integrates RSSD with the MySQL database, allowing it to produce RSS feeds based on any information stored in databases running on MySQL. The module allows the user to run just about any SQL query supported by the database to extract the needed information to create a feed.
Mod_mysql does also support pre-formated strings to generate the description for each RSS item it produces.
mod_mimersql
This module allows the RSS daemon to fetch items from the MimerSQL database.
The module allows the user to run just about any SQL query supported by the database to extract the needed information to create a feed.
Mod_mimersql does also support pre-formated strings to generate the description for each RSS item it produces.
mod_template
This is a template-module that can be used as a starting-point when developing new modules. It is usable, but does not really provide a usable feature.
<<less
Download (0.47MB)
Added: 2005-04-26 License: BSD License Price:
1641 downloads
Metastorage 2006.11.22

Metastorage 2006.11.22


Metastorage is a PHP data access object generator compiler tool. more>>
Metastorage is a PHP data access object generator compiler tool.
Metastorage is an application that automatically generates code for an Object Oriented API to store, retrieve and manipulate the persistent objects of classes described in a high level data model definition.
Metastorage provides a much more efficient development process for medium or large size applications that store and retrieve data from SQL based databases or other types of storage persistence containers, like XML files, flat file databases or LDAP servers.
When storing objects in SQL databases, Metastorage generated code performs efficient object-relational mapping. Metastorage antecipates static storage optimization decisions at compile time, so applications gain in performance, code size and memory usage by avoiding evaluating static decisions at run time.
Main features:
XML definition format
- Easy to write and understand component definition format in XML
Database schemas
- Automatic generation of (database) schema definition of the persistence container
Automatic generation of all classes
- Generates all the code for the data classes, factory class and (database) schema installation class
Self-contained code
- The generated code is self-contained and does not depend on MetaL or libraries of code that are not supplied
Object Query Language
- Provides an Object Query Language (OQL) to define expressions to filter objects in search queries
No SQL
- All code is generated without the need for the developer to write SQL code manually
Forms
- Generation of classes to create, validate and process Web forms to manage objects of the data classes.
Reports
- Generation of classes to execute queries to retrieve data from many objects to elaborate reports or to execute another kind of bulk processing
UML Diagrams
- Automatic generation of Entity-Relationship graphs in UML of the component class diagram
<<less
Download (0.88MB)
Added: 2006-11-22 License: BSD License Price:
1066 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5