SQL Buddy - Web based MySQL administration


 
Thread Tools Search this Thread
Operating Systems Solaris Solaris BigAdmin RSS SQL Buddy - Web based MySQL administration
# 1  
Old 11-21-2008
SQL Buddy - Web based MySQL administration

Let's be honest - managing a database isn't terribly exciting. But you still want to use a product that looks half-decent and is intuitive to use. SQL Buddy was designed to meet the demands of modern web developers. Oh, and did I mention that its completely open source and free for everyone to use?

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Solaris

Java web console Vs Web-Based Enterprise Management(WBEM)

Java web console Vs Web-Based Enterprise Management(WBEM) 1. I like to understand the difference in purpose of using java web console and Web-Based Enterprise Management (WBEM) 2. As per CIS benchmark, both of them has to be disabled when not used for increased security. Solaris admin(s) -... (0 Replies)
Discussion started by: cyberidude
0 Replies

2. News, Links, Events and Announcements

MySQL Web Seminars

Free MySQL Webinars here: MySQL :: MySQL Web Seminars ---------- Post updated at 05:18 ---------- Previous update was at 05:10 ---------- Upcoming webinars, FYI: (0 Replies)
Discussion started by: Neo
0 Replies

3. Programming

accessing mysql from ms-sql

Hi, I was trying to access Mysql Server sitting in Linux Box from MS-SQL through linked server concept. I am getting the error as : "Invalid use of schema and/or catalog for OLE DB provider 'MSDASQL'. A four-part name was supplied, but the provider does not expose the necessary... (0 Replies)
Discussion started by: DILEEP410
0 Replies

4. High Performance Computing

MySQL Cluster Administration Tools 0.3.1 (Default branch)

The MyCAT project is a toolset for managing MySQL/Linux servers, and could be helpful for anyone managing a network of *nix servers whether running MySQL Cluster, standard replication, or not running MySQL at all. At present, it contains three programs. rcall eases use and administration of groups... (0 Replies)
Discussion started by: Linux Bot
0 Replies

5. UNIX for Dummies Questions & Answers

Witch OS you will use in a web server(PHP+MySQL)?

Witch OS you will use in a web server(PHP+MySQL)? (0 Replies)
Discussion started by: BSDVirus
0 Replies

6. Linux

Free MySQL administration console

Hi all! I am looking for a good FREE front end, that is known to work with MySQL 4.1.8a, suitable for performing administration tasks. I thank you in advance... (1 Reply)
Discussion started by: aitor314
1 Replies

7. UNIX for Advanced & Expert Users

Web Administration

Hi I need help on to administering a web server.We r hosting web sites . I need an web interface through customers can login into their Account Control Centre where they can manipulate ftp,mailboxes,passwors,crond,mysql Vijay (4 Replies)
Discussion started by: Vijayanand
4 Replies
Login or Register to Ask a Question
DBIx::Class::Storage::DBI::mysql(3)			User Contributed Perl Documentation		       DBIx::Class::Storage::DBI::mysql(3)

NAME
DBIx::Class::Storage::DBI::mysql - Storage::DBI class implementing MySQL specifics SYNOPSIS
Storage::DBI autodetects the underlying MySQL database, and re-blesses the $storage object into this class. my $schema = MyDb::Schema->connect( $dsn, $user, $pass, { on_connect_call => 'set_strict_mode' } ); DESCRIPTION
This class implements MySQL specific bits of DBIx::Class::Storage::DBI, like AutoIncrement column support and savepoints. Also it augments the SQL maker to support the MySQL-specific "STRAIGHT_JOIN" join type, which you can use by specifying "join_type => 'straight'" in the relationship attributes It also provides a one-stop on-connect macro "set_strict_mode" which sets session variables such that MySQL behaves more predictably as far as the SQL standard is concerned. STORAGE OPTIONS
set_strict_mode Enables session-wide strict options upon connecting. Equivalent to: ->connect ( ... , { on_connect_do => [ q|SET SQL_MODE = CONCAT('ANSI,TRADITIONAL,ONLY_FULL_GROUP_BY,', @@sql_mode)|, q|SET SQL_AUTO_IS_NULL = 0|, ] }); AUTHORS
See "CONTRIBUTORS" in DBIx::Class LICENSE
You may distribute this code under the same terms as Perl itself. perl v5.16.2 2012-08-16 DBIx::Class::Storage::DBI::mysql(3)