Main > Free Download Search >

Free mysql software for linux

mysql

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1058
MySQL 5.1.21 Beta

MySQL 5.1.21 Beta


MySQL is The Worlds Most Popular Open Source Database. more>> <<less
Download (20.3MB)
Added: 2007-07-10 License: GPL (GNU General Public License) Price:
895 downloads
 
Other version of MySQL
MySQL 5.0.45MySQL is The Worlds Most Popular Open Source Database. MySQL 5.0.45 - MySQL AB
License:GPL (GNU General Public License)
Download (23.3MB)
708 downloads
Added: 2007-07-12
MySQL 4.1.22MySQL is The Worlds Most Popular Open Source Database. MySQL 4.1.22 - MySQL AB
License:GPL (GNU General Public License)
Download (8.5MB)
784 downloads
Added: 2006-11-27
MySQL 4.0.27MySQL is The Worlds Most Popular Open Source Database. MySQL 4.0.27 - MySQL AB
License:GPL (GNU General Public License)
Download (7.0MB)
1398 downloads
Added: 2006-05-12
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
mpg123-mysql 0.7

mpg123-mysql 0.7


mpg123-mysql consists of some patches to mpg123 which make it support MySQL. more>>
mpg123-mysql consists of some patches to mpg123 which make it support MySQL. This adds some bells and whistles, including rating support and playlist support.
In addition to that, mpg123-mysql offers the following facilities:
mpg123-mysql uses setproctitle(3) to show ps(1) which title it is playing at the moment. You can use this feature with the included "np" script. Unfortunately, this works on FreeBSD only at the moment.
by sending a SIGTSTP signal to mpg123-mysql, it stops playing and closes the audio device so that another process can open it temporarily. You can try this out with "killall -TSTP mpg123", for example.
Main features:
- rating support:
- When a file is played completely, it gets some (e.g. 2) points. When playing is interrupted by sending the usual "INT" signal to mpg123, the song gets less points. After a while, you can build your own "Top 10" or sort out those files you dont want
- to have any longer. Additionally, mpg123-mysql is able to skip titles with a bad (negative) rating
-
- playlist support:
- You can tell mpg123 to use your database as the source for your playlist. This also works in shuffle (-z) mode.
<<less
Download (0.010MB)
Added: 2006-07-17 License: BSD License Price:
1195 downloads
DBD::mysql 4.004

DBD::mysql 4.004


DBD::mysql is a Perl module with MySQL driver for the Perl5 Database Interface (DBI). more>>
DBD::mysql is a Perl module with MySQL driver for the Perl5 Database Interface (DBI).

SYNOPSIS

use DBI;

$dsn = "DBI:mysql:database=$database;host=$hostname;port=$port";

$dbh = DBI->connect($dsn, $user, $password);


$drh = DBI->install_driver("mysql");
@databases = DBI->data_sources("mysql");
or
@databases = DBI->data_sources("mysql",
{"host" => $host, "port" => $port});

$sth = $dbh->prepare("SELECT * FROM foo WHERE bla");
or
$sth = $dbh->prepare("LISTFIELDS $table");
or
$sth = $dbh->prepare("LISTINDEX $table $index");
$sth->execute;
$numRows = $sth->rows;
$numFields = $sth->{NUM_OF_FIELDS};
$sth->finish;

$rc = $drh->func(createdb, $database, $host, $user, $password, admin);
$rc = $drh->func(dropdb, $database, $host, $user, $password, admin);
$rc = $drh->func(shutdown, $host, $user, $password, admin);
$rc = $drh->func(reload, $host, $user, $password, admin);

$rc = $dbh->func(createdb, $database, admin);
$rc = $dbh->func(dropdb, $database, admin);
$rc = $dbh->func(shutdown, admin);
$rc = $dbh->func(reload, admin);

EXAMPLE

#!/usr/bin/perl

use strict;
use DBI();

# Connect to the database.
my $dbh = DBI->connect("DBI:mysql:database=test;host=localhost",
"joe", "joes password",
{RaiseError => 1});

# Drop table foo. This may fail, if foo doesnt exist.
# Thus we put an eval around it.
eval { $dbh->do("DROP TABLE foo") };
print "Dropping foo failed: $@n" if $@;

# Create a new table foo. This must not fail, thus we dont
# catch errors.
$dbh->do("CREATE TABLE foo (id INTEGER, name VARCHAR(20))");

# INSERT some data into foo. We are using $dbh->quote() for
# quoting the name.
$dbh->do("INSERT INTO foo VALUES (1, " . $dbh->quote("Tim") . ")");

# Same thing, but using placeholders
$dbh->do("INSERT INTO foo VALUES (?, ?)", undef, 2, "Jochen");

# Now retrieve data from the table.
my $sth = $dbh->prepare("SELECT * FROM foo");
$sth->execute();
while (my $ref = $sth->fetchrow_hashref()) {
print "Found a row: id = $ref->{id}, name = $ref->{name}n";
}
$sth->finish();

# Disconnect from the database.
$dbh->disconnect();

DBD::mysql is the Perl5 Database Interface driver for the MySQL database. In other words: DBD::mysql is an interface between the Perl programming language and the MySQL programming API that comes with the MySQL relational database management system. Most functions provided by this programming API are supported. Some rarely used functions are missing, mainly because noone ever requested them.

<<less
Download (0.11MB)
Added: 2007-03-23 License: Perl Artistic License Price:
562 downloads
MySQL wrapped 1.6

MySQL wrapped 1.6


MySQL wrapped is a very small collection of classes that hides the MySQL C API. more>>
MySQL wrapped is a C++ wrapper for the MySQL database C application programming interface.
Examples:
The following example should be linked with the mysqlclient library from the MySQL distribution / build.
#include
#include
#include
#include
#include "Database.h"
#include "Query.h"
int main()
{
Database db("localhost","dbuser","","testdb");
Query q(db);
q.execute("delete from user");
q.execute("insert into user values(1,First Person)");
q.execute("insert into user values(2,Another Person)");
q.get_result("select num,name from user");
while (q.fetch_row())
{
long num = q.getval();
std::string name = q.getstr();
printf("User#%ld: %sn", num, name.c_str() );
}
q.free_result();
}
Enhancements:
- This release adds methods to access fields by name.
<<less
Download (0.015MB)
Added: 2006-04-08 License: GPL (GNU General Public License) Price:
1299 downloads
netacct-mysql 0.78

netacct-mysql 0.78


Netacct-mysql is modified version of traffic accounting daemon net-acct which stores collected data in MySQL. more>>
Netacct-mysql is modified version of traffic accounting daemon net-acct which stores collected data in MySQL. It supports writing accounting information in a single line in MySQL per day for every IP (mrta style).
Netacct functions by analogy with sniffer, i.e. it keeps track of all the traffic passing through the network interfaces assigned by the configuration file. Data are stored in the memory and periodically saved in the database. The default data save period is 300 seconds (see option "flush" in the config file).
The application is used for accounting of the network traffic passed through your router/gateway. It is based on the libpcap library and functions as a userspace daemon. Options for dividing the network traffic into 4 categories:
- international
- peering
- direct
- local
The traffic accounts are saved in a database, and for the time being MySQL and Oracle are supported. As libpcap is used for gathering the network data the application runs (for the moment) on the following operating systems:
- Linux
- FreeBSD
- OpenBSD
- Solaris
For more detailed information regarding a particular OS, please read the FAQ file.
Enhancements:
- netacct.h:
- process.c:
- naccttab.sample:
- fixed disable fields in config file, now it works does not write some fields in dump file - fixed
<<less
Download (0.044MB)
Added: 2006-06-29 License: GPL (GNU General Public License) Price:
700 downloads
MySQLfs 0.4.0 RC1

MySQLfs 0.4.0 RC1


MySQLfs is Linux userspace filesystem which stores data in a MySQL database. more>>
MySQLfs is Linux userspace filesystem which stores data in a MySQL database. The project uses FUSE to interface with the kernel.

<<less
Download (0.22MB)
Added: 2007-08-16 License: GPL (GNU General Public License) Price:
800 downloads
mysqldump.php 1.0

mysqldump.php 1.0


mysqldump.php is a PHP script that dumps a MySQL database into a mysqldump compatible SQL script. more>>
mysqldump.php is a PHP script that dumps a MySQL database into a mysqldump compatible SQL script.

mysqldump.php can also dump a table into CSV format.

<<less
Download (0.003MB)
Added: 2006-10-17 License: GPL (GNU General Public License) Price:
1131 downloads
mysqlRadiusd 1.71

mysqlRadiusd 1.71


mysqlRadiusd project is a MySQL driven RADIUS daemon. more>>
mysqlRadiusd project is a MySQL driven RADIUS daemon.

mysqlRadiusd is a RADIUS daemon based on the 1.6.6 Cistron distribution and the mySQL patches that has been modified for use with the mysqlISP GPL ISP management software system.

It is very stable and can handle large ISPs easily while pumping mass accounting records into mysqlRadacct subsystem at a tremendous rate from even multi-server clusters.

<<less
Download (0.082MB)
Added: 2007-03-12 License: GPL (GNU General Public License) Price:
956 downloads
MySQL Abstractor 2.2

MySQL Abstractor 2.2


MySQL Abstractor package contains PHP classes that implements a MySQL database abstraction layer. more>>
MySQL Abstractor package contains PHP classes that implements a MySQL database abstraction layer.

It provides several classes. There is one for establishing connections and executing SQL queries, another for composing and executing SELECT, INSERT, UPDATE and DELETE queries from a list of parameters, and a wrapper class to simplify the usage of the other two classes.

<<less
Download (MB)
Added: 2007-07-24 License: MIT/X Consortium License Price:
502 downloads
Qt MySQL Budget 0.10

Qt MySQL Budget 0.10


Qt MySQL Budget is a GUI that allows the creation of a personal budget. more>>
Qt MySQL Budget project is a GUI that allows the creation of a personal budget.

The basic layout is a month selector, a tab for your allocations (budget), a tab for your expenses, and a tab showing the totals.

It has a very simple design allowing the quick creation and updating of budgets to help individuals plot and track their monthly sending.

<<less
Download (0.30MB)
Added: 2006-01-31 License: GPL (GNU General Public License) Price:
1372 downloads
Mysql Assistant 1.1.1

Mysql Assistant 1.1.1


Mysql Assistant is a MySQL viewer. more>>
Mysql Assistant is a MySQL viewer. Mysql Assistant requires Ruby-Gtk2 and MySQL/Ruby.

Myassistant is a MySQL viewer using, Ruby, Ruby-Gtk2, MySQL/Ruby and developed on ruby-1.8.4, Mysql-5.0.16, mysql-ruby-2.7, ruby-gtk2-0.14.1.

Currently 3 APIs are provided for MySQL, MySQL/Ruby, Ruby/MySQL, and DBI.
These are 3 different APIs, Please install proper one.

Installation:

untar package anywhere you want.

Security Issue

Myassistant create ".mydb" file which includes "Mysql server name","user name",
"password","database name" with chmod 600 on your home directory.
It could be your security hole, so please notice that.

Fonts

Currently default font is "Sans 12". If you want change it, edit row number 91.

If you have any questions or problems, please let me know.

<<less
Download (0.003MB)
Added: 2006-11-05 License: GPL (GNU General Public License) Price:
1098 downloads
MySQL for Linux 6.0.0

MySQL for Linux 6.0.0


MySQL - Multi-user and robust SQL database server more>> MySQL - Multi-user and robust SQL database server. The worlds most popular open source database
MySQL is a very fast, multi-user, multi-threaded and robust SQL (Structured Query Language) database server. The worlds most popular open source database.
MySQL is an attractive alternative to higher-cost, more complex database technology. Its award-winning speed, scalability and reliability make it the right choice for corporate IT departments, Web developers and packaged software vendors
<<less
Download (67.68MB)
Added: 2009-04-05 License: Freeware Price: Free
204 downloads
 
Other version of MySQL for Linux
MySQL for Linux 5.1.16MYSQL - MySQL - Multi-user and robust SQL database server. MySQL for Linux. MySQL - Multi-user and robust SQL database server
License:Freeware
Download (57.70MB)
204 downloads
Added: 2009-04-04
License:Freeware
Download (68.46MB)
204 downloads
Added: 2009-04-03
License:Freeware
Download (44.82MB)
188 downloads
Added: 2009-04-21
License:Freeware
Download (31.84MB)
186 downloads
Added: 2009-04-23
guile-dbd-mysql 2.0.0

guile-dbd-mysql 2.0.0


guile-dbd-mysql project is a MySQL database driver for the Guile DBI system. more>>
guile-dbd-mysql project is a MySQL database driver for the Guile DBI system.
guile-dbi is a database generic interface. Provide a way to use dbds (data base drivers) which are linked at run-time (like perl dbi or php or...) for query different database engines always in the same way.
Enhancements:
- The API has been upgraded to Guile 1.8.
<<less
Download (0.30MB)
Added: 2006-09-28 License: GPL (GNU General Public License) Price:
1121 downloads
Persistent::MySQL 0.50

Persistent::MySQL 0.50


Persistent::MySQL is a persistent class implemented using a MySQL database. more>>
Persistent::MySQL is a persistent class implemented using a MySQL database.

SYNOPSIS

use Persistent::MySQL;
use English; # import readable variable names like $EVAL_ERROR

eval { ### in case an exception is thrown ###

### allocate a persistent object ###
my $emp = new Persistent::MySQL($data_source, $username, $password, $table);

### define attributes of the object ###
$emp->add_attribute(empno, ID, Number, undef, 4);
$emp->add_attribute(ename, Persistent, VarChar, undef, 10);
$emp->add_attribute(job, Persistent, VarChar, undef, 9);
$emp->add_attribute(mgr, Persistent, Number, undef, 4);
$emp->add_attribute(hiredate, Persistent, DateTime, undef);
$emp->add_attribute(sal, Persistent, Number, undef, 7, 2);
$emp->add_attribute(comm, Persistent, Number, undef, 7, 2);
$emp->add_attribute(deptno, Persistent, Number, undef, 2);

### query the datastore for some objects ###
$emp->restore_where(qq{
sal > 1000 and
job = CLERK and
ename LIKE M%
}, "sal, ename");
while ($emp->restore_next()) {
printf "ename = %s, emp# = %s, sal = %s, hiredate = %sn",
$emp->ename, $emp->empno, $emp->sal, $emp->hiredate;
}
};

if ($EVAL_ERROR) { ### catch those exceptions! ###
print "An error occurred: $EVAL_ERRORn";
}

ABSTRACT

This is a Persistent class that uses a MySQL database table to store and retrieve objects. This class can be instantiated directly or subclassed. The methods described below are unique to this class, and all other methods that are provided by this class are documented in the Persistent documentation. The Persistent documentation has a very thorough introduction to using the Persistent framework of classes.

<<less
Download (0.010MB)
Added: 2007-05-19 License: Perl Artistic License Price:
888 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5