Re: mysql cgi admin and client

2003-12-16 Thread George Georgalis
After I wrote that, I made some good progress... notably:
http://www.thedumbterminal.co.uk/software/webmysql.shtml

This might be good too, haven't tried
http://sourceforge.net/projects/mysqltool/

// George

On 12/15/03, George Georgalis wrote:
>Hi,
>
>I thought there was something like myphpadmin (for mysql) in perl but
>I'm not finding it.
>
>I'm looking for a perl or mod_perl cgi, to create (as admin) mysql
>database and tables, data entry interface and access client. Ideally
>template / css based. Lots of companies sell this sort og thing for
>under $40, but I suspect there is a GNU one out there?
>
>// George
>
>
>-- 
>GEORGE GEORGALIS, System Admin/Architectcell: 646-331-2027<
>Security Services, Web, Mail,mailto:[EMAIL PROTECTED] 
>Multimedia, DB, DNS and Metrics.   http://www.galis.org/george 
>

-- 
GEORGE GEORGALIS, System Admin/Architectcell: 646-331-2027<
Security Services, Web, Mail,mailto:[EMAIL PROTECTED] 
Multimedia, DB, DNS and Metrics.   http://www.galis.org/george 


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
 




RE: mysql cgi admin and client

2003-12-16 Thread NYIMI Jose (BMB)
Try
http://www.gossamer-threads.com/scripts/mysqlman/index.htm

José.

-Original Message-
From: George Georgalis [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, December 16, 2003 6:14 AM
To: [EMAIL PROTECTED]
Subject: Re: mysql cgi admin and client


After I wrote that, I made some good progress... notably: 
http://www.thedumbterminal.co.uk/software/webmysql.shtml

This might be good too, haven't tried http://sourceforge.net/projects/mysqltool/

// George

On 12/15/03, George Georgalis wrote:
>Hi,
>
>I thought there was something like myphpadmin (for mysql) in perl but 
>I'm not finding it.
>
>I'm looking for a perl or mod_perl cgi, to create (as admin) mysql 
>database and tables, data entry interface and access client. Ideally 
>template / css based. Lots of companies sell this sort og thing for 
>under $40, but I suspect there is a GNU one out there?
>
>// George
>
>
>-- 
>GEORGE GEORGALIS, System Admin/Architectcell: 646-331-2027<
>Security Services, Web, Mail,mailto:[EMAIL PROTECTED] 
>Multimedia, DB, DNS and Metrics.   http://www.galis.org/george 
>

-- 
GEORGE GEORGALIS, System Admin/Architectcell: 646-331-2027<
Security Services, Web, Mail,mailto:[EMAIL PROTECTED] 
Multimedia, DB, DNS and Metrics.   http://www.galis.org/george 


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> 
<http://learn.perl.org/first-response>




 DISCLAIMER 

"This e-mail and any attachment thereto may contain information which is confidential 
and/or protected by intellectual property rights and are intended for the sole use of 
the recipient(s) named above. 
Any use of the information contained herein (including, but not limited to, total or 
partial reproduction, communication or distribution in any form) by other persons than 
the designated recipient(s) is prohibited. 
If you have received this e-mail in error, please notify the sender either by 
telephone or by e-mail and delete the material from any computer".

Thank you for your cooperation.

For further information about Proximus mobile phone services please see our website at 
http://www.proximus.be or refer to any Proximus agent.


--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>




Re: mysql cgi admin and client

2003-12-16 Thread R. Joseph Newton
George Georgalis wrote:

> After I wrote that, I made some good progress... notably:
> http://www.thedumbterminal.co.uk/software/webmysql.shtml
>
> This might be good too, haven't tried
> http://sourceforge.net/projects/mysqltool/
>
> // George

That sounds good.  You didn't say what myphpadmin does, though, so I'm not
really sure what functionality you are looking for.  The standard tool in Perl
for basic DB access is the DBI [database independent] interface, coulple
withDBD:: as the driver for specific engine .  You will
want to get familiar with these, though it sounds like yur immediate issue has
more to do with database administration.  I'm not sure what DBI's capabilities
are for design tasks.  It does have methods for querying metadata.  My guess is
that it will also pass DDL statements as well as SQL.

Joseph


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
 




Re: mysql cgi admin and client

2003-12-19 Thread George Georgalis

On Tue, Dec 16, 2003 at 09:19:01AM -0800, R. Joseph Newton wrote:
>George Georgalis wrote:
>
>> After I wrote that, I made some good progress... notably:
>> http://www.thedumbterminal.co.uk/software/webmysql.shtml
>>
>> This might be good too, haven't tried
>> http://sourceforge.net/projects/mysqltool/
>>
>> // George
>
>That sounds good.  You didn't say what myphpadmin does, though, so I'm not
>really sure what functionality you are looking for.  The standard tool in Perl
>for basic DB access is the DBI [database independent] interface, coulple
>withDBD:: as the driver for specific engine .  You will
>want to get familiar with these, though it sounds like yur immediate issue has
>more to do with database administration.  I'm not sure what DBI's capabilities
>are for design tasks.  It does have methods for querying metadata.  My guess is
>that it will also pass DDL statements as well as SQL.

Hi Joseph,

the tool I had in mind was http://www.phpmyadmin.net/

it does a lot, with php. I'm looking for a perl based cgi program
I can drop in to allow remote users to design a db and enter data.
template/css based would be good.

I'd expect it to use DBI::mysql and would hopefully be a good project
for me to use to get better experience with perl. Presently I create
mysql scripts for database generation and bash interfaces for input and
queries.

webmysql doesn't seem to support INSERT so...

the idea is to get something simple in place quickly, for remote clients
to admin/insert on databases (and web based not client), then work on
developing a more specialized custom application.

// George

-- 
GEORGE GEORGALIS, System Admin/Architectcell: 646-331-2027<
Security Services, Web, Mail,mailto:[EMAIL PROTECTED] 
Multimedia, DB, DNS and Metrics.   http://www.galis.org/george 


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
 




Re: mysql cgi admin and client

2003-12-19 Thread George Georgalis
yeah, that looks right. Thanks Jose.

// George


On Tue, Dec 16, 2003 at 03:30:10PM +0100, NYIMI Jose (BMB) wrote:
>Try
>http://www.gossamer-threads.com/scripts/mysqlman/index.htm
>
>Jos?.
>
>-Original Message-
>From: George Georgalis [mailto:[EMAIL PROTECTED] 
>Sent: Tuesday, December 16, 2003 6:14 AM
>To: [EMAIL PROTECTED]
>Subject: Re: mysql cgi admin and client
>
>
>After I wrote that, I made some good progress... notably: 
>http://www.thedumbterminal.co.uk/software/webmysql.shtml
>
>This might be good too, haven't tried http://sourceforge.net/projects/mysqltool/
>
>// George
>
>On 12/15/03, George Georgalis wrote:
>>Hi,
>>
>>I thought there was something like myphpadmin (for mysql) in perl but 
>>I'm not finding it.
>>
>>I'm looking for a perl or mod_perl cgi, to create (as admin) mysql 
>>database and tables, data entry interface and access client. Ideally 
>>template / css based. Lots of companies sell this sort og thing for 
>>under $40, but I suspect there is a GNU one out there?
>>
>>// George
>>

-- 
GEORGE GEORGALIS, System Admin/Architectcell: 646-331-2027<
Security Services, Web, Mail,mailto:[EMAIL PROTECTED] 
Multimedia, DB, DNS and Metrics.   http://www.galis.org/george 


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>