mysql cgi admin and client

Ask a Question related to PERL Beginners, Design and Development.

  1. #1

    Default mysql cgi admin and client

    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/Architect cell: 646-331-2027 <IXOYE><
    Security Services, Web, Mail, mailto:george@galis.org
    Multimedia, DB, DNS and Metrics. [url]http://www.galis.org/george[/url]

    George Georgalis Guest

  2. Similar Questions and Discussions

    1. Need Help with mysql admin for Mac
      Hello all. I am new to cold fusion and databases all together. Infact I am doing an online tutorial to get me started, my problem is the tutorial...
    2. can't logon to db with mysql client: mysql 5 passwords
      I recently have had some difficulty getting my mysql client to logon to my remote dbs and I'm thinking it may be that my host service has shifted to...
    3. Who needs to purchase? admin or client?
      If I as admin. am using mac and my client is on pc do we each have to purchase contribute? Deerwomon
    4. Problem connecting MySQL in MX Admin Panel
      I am using Dreamweaver MX 6.1 and ColdFusion MX Server Administrator. OBDC Driver is Microsoft MySQL 3.5.1. The driver is set up under Microsoft...
    5. DB2/UDB Admin Client V7.2 64 bit for Solaris
      Hi all I'm trying to get the DB2/UDB Admin Client V7.2 64 bit for Solaris. The IBM fixpak site says that its "Not Available". Would anyone know...
  3. #2

    Default Re: mysql cgi admin and client

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

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

    // 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/Architect cell: 646-331-2027 <IXOYE><
    >Security Services, Web, Mail, mailto:george@galis.org
    >Multimedia, DB, DNS and Metrics. [url]http://www.galis.org/george[/url]
    >
    --
    GEORGE GEORGALIS, System Admin/Architect cell: 646-331-2027 <IXOYE><
    Security Services, Web, Mail, mailto:george@galis.org
    Multimedia, DB, DNS and Metrics. [url]http://www.galis.org/george[/url]

    George Georgalis Guest

  4. #3

    Default Re: mysql cgi admin and client

    George Georgalis wrote:
    > After I wrote that, I made some good progress... notably:
    > [url]http://www.thedumbterminal.co.uk/software/webmysql.shtml[/url]
    >
    > This might be good too, haven't tried
    > [url]http://sourceforge.net/projects/mysqltool/[/url]
    >
    > // 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::<target_db> as the driver for specific engine <target_db>. 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

    R. Joseph Newton Guest

  5. #4

    Default Re: mysql cgi admin and client


    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:
    >> [url]http://www.thedumbterminal.co.uk/software/webmysql.shtml[/url]
    >>
    >> This might be good too, haven't tried
    >> [url]http://sourceforge.net/projects/mysqltool/[/url]
    >>
    >> // 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::<target_db> as the driver for specific engine <target_db>. 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 [url]http://www.phpmyadmin.net/[/url]

    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/Architect cell: 646-331-2027 <IXOYE><
    Security Services, Web, Mail, mailto:george@galis.org
    Multimedia, DB, DNS and Metrics. [url]http://www.galis.org/george[/url]

    George Georgalis Guest

  6. #5

    Default Re: mysql cgi admin and client

    yeah, that looks right. Thanks Jose.

    // George


    On Tue, Dec 16, 2003 at 03:30:10PM +0100, NYIMI Jose (BMB) wrote:
    >Try
    >[url]http://www.gossamer-threads.com/scripts/mysqlman/index.htm[/url]
    >
    >Jos?.
    >
    >-----Original Message-----
    >From: George Georgalis [mailto:georgw@galis.org]
    >Sent: Tuesday, December 16, 2003 6:14 AM
    >To: [email]beginners@perl.org[/email]
    >Subject: Re: mysql cgi admin and client
    >
    >
    >After I wrote that, I made some good progress... notably: [url]http://www.thedumbterminal.co.uk/software/webmysql.shtml[/url]
    >
    >This might be good too, haven't tried [url]http://sourceforge.net/projects/mysqltool/[/url]
    >
    >// 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/Architect cell: 646-331-2027 <IXOYE><
    Security Services, Web, Mail, mailto:george@galis.org
    Multimedia, DB, DNS and Metrics. [url]http://www.galis.org/george[/url]

    George Georgalis Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139