RE: MySQL Front

2006-11-10 Thread Löffler Thomas J .

Cf. http://www.phpcenter.de/phorum/read.php?f=1i=50453t=50453 + 
http://www.heidisql.com/. 


cheers, Thomas 
 t.j. loeffler 
  eth zurich
  institute of geology
  CAB E 10.4, universitaetsstrasse 6
  8092 zurich, switzerland
  www.erdw.ethz.ch
  +41 44 632 5696 phone
  044 658 3311 Polyphone
   +41 44 632 1080 fax
 _
___

-Original Message-
From: PBS Usenet [mailto:[EMAIL PROTECTED] 
Sent: Thursday, November 09, 2006 9:08 PM
To: mysql@lists.mysql.com
Subject: MySQL Front

Can anyone tell me what's wrong: http://www.mysqlfront.de/

It's my favorite toll now it's gone

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]


--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



MySQL Front

2006-11-09 Thread PBS Usenet

Can anyone tell me what's wrong: http://www.mysqlfront.de/

It's my favorite toll now it's gone

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: MySQL Front

2006-11-09 Thread Martijn Tonies



 Can anyone tell me what's wrong: http://www.mysqlfront.de/

 It's my favorite toll now it's gone

Plenty of others - let me advertise Database Workbench - www.upscene.com

:-)


Martijn Tonies
Database Workbench - tool for InterBase, Firebird, MySQL, NexusDB, Oracle 
MS SQL Server
Upscene Productions
http://www.upscene.com
My thoughts:
http://blog.upscene.com/martijn/
Database development questions? Check the forum!
http://www.databasedevelopmentforum.com


-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: MySQL Front

2006-11-09 Thread Gabriel PREDA

MySQL AB asked Hoyer... the lead developer to remove the MySQL part
from the name of the application... and he used that as an excuse to
stop the project.

His option !

Now you can try MySQL AB's tools...
http://dev.mysql.com/downloads/gui-tools/5.0.html

Or you can go to the original developer of MySQL-Front... remember the
old 2.5 gui... the developer is back... renamed the products... more
on the product page and the forum... please go to:
http://www.heidisql.com/

Good luck !

On 11/9/06, PBS Usenet [EMAIL PROTECTED] wrote:

Can anyone tell me what's wrong: http://www.mysqlfront.de/

It's my favorite toll now it's gone

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]





--
-- -- -- -- -- -- -- -- -- -- -- -- -- --
Gabriel PREDA
Senior Web Developer

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: MSSQL(B-end) to MYSQL(Front-End) - InnoDB or MyISAM

2006-10-09 Thread Ady Wicaksono

On 10/9/06, Ow Mun Heng [EMAIL PROTECTED] wrote:

On Mon, 2006-10-09 at 11:42 +0700, Ady Wicaksono wrote:
 Is your MSSQL data structure contain such foreign key?

 If yes, my isam is not suitable for you

Actually, you know what? I don't really know.
How does one go about checking?


Dump it to SQL, and make sure you know how foreign key SQL syntax
See:
 http://www.windowsitlibrary.com/Content/77/12/1.html






 Others... for overall, i prefer innodb :)

I know it's transaction safe and all, but not too sure if I need the
extra overhead.


If your concern is fast insert, how fast do you need? is 3000 rows
insert/seconds enough?
if your concern is fast read, tune your innodb buffer, bigger memory
bigger performance :)

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: MSSQL(B-end) to MYSQL(Front-End) - InnoDB or MyISAM

2006-10-09 Thread Ow Mun Heng
On Mon, 2006-10-09 at 13:02 +0700, Ady Wicaksono wrote:
 On 10/9/06, Ow Mun Heng [EMAIL PROTECTED] wrote:
  On Mon, 2006-10-09 at 11:42 +0700, Ady Wicaksono wrote:
   Is your MSSQL data structure contain such foreign key?
  
   If yes, my isam is not suitable for you
 
  Actually, you know what? I don't really know.
  How does one go about checking?
 
 Dump it to SQL, and make sure you know how foreign key SQL syntax
 See:
   http://www.windowsitlibrary.com/Content/77/12/1.html

Thanks. I'll take look.

   Others... for overall, i prefer innodb :)
 
  I know it's transaction safe and all, but not too sure if I need the
  extra overhead.
 
 If your concern is fast insert, how fast do you need? is 3000 rows
 insert/seconds enough?

I think That's _way_ enough. Looking through the select (group by
date/time etc) I see the max is ~2000 or so inserts (per Minute :-))


 if your concern is fast read, tune your innodb buffer, bigger memory
 bigger performance :)

My concern is fast reads. Based on
http://www.mysqlperformanceblog.com/2006/09/29/what-to-tune-in-mysql-server-after-installation/

the innodb_buffer_pool_size should be ~70-80% of main memory.




-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



MSSQL(B-end) to MYSQL(Front-End) - InnoDB or MyISAM

2006-10-08 Thread Ow Mun Heng
I'm just curious as to which would have better performance for my needs.

backend is a MSSQL server and I want to replicate it into a MySQL
Frontend for user accesses.

replication would be done via mysqlimport/load data infile. I'm
thinking of doing the inserts something like ever 5 seconds or so.

MyISAM tables are faster than InnoDB, but they are more optimised for
READS than WRITEs, however due to the replication, (being done every 5
secs on ~5 tables), I'm wondering if this will cause performance losses
due to table-locks etc.

Thanks

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: MSSQL(B-end) to MYSQL(Front-End) - InnoDB or MyISAM

2006-10-08 Thread Ady Wicaksono

Is your MSSQL data structure contain such foreign key?

If yes, my isam is not suitable for you

Others... for overall, i prefer innodb :)

On 10/8/06, Ow Mun Heng [EMAIL PROTECTED] wrote:

I'm just curious as to which would have better performance for my needs.

backend is a MSSQL server and I want to replicate it into a MySQL
Frontend for user accesses.

replication would be done via mysqlimport/load data infile. I'm
thinking of doing the inserts something like ever 5 seconds or so.

MyISAM tables are faster than InnoDB, but they are more optimised for
READS than WRITEs, however due to the replication, (being done every 5
secs on ~5 tables), I'm wondering if this will cause performance losses
due to table-locks etc.

Thanks

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]




--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: MSSQL(B-end) to MYSQL(Front-End) - InnoDB or MyISAM

2006-10-08 Thread Ow Mun Heng
On Mon, 2006-10-09 at 11:42 +0700, Ady Wicaksono wrote:
 Is your MSSQL data structure contain such foreign key?
 
 If yes, my isam is not suitable for you

Actually, you know what? I don't really know.
How does one go about checking?

 
 Others... for overall, i prefer innodb :)

I know it's transaction safe and all, but not too sure if I need the
extra overhead.

 
 On 10/8/06, Ow Mun Heng [EMAIL PROTECTED] wrote:
  I'm just curious as to which would have better performance for my needs.
 
  backend is a MSSQL server and I want to replicate it into a MySQL
  Frontend for user accesses.
 
  replication would be done via mysqlimport/load data infile. I'm
  thinking of doing the inserts something like ever 5 seconds or so.
 
  MyISAM tables are faster than InnoDB, but they are more optimised for
  READS than WRITEs, however due to the replication, (being done every 5
  secs on ~5 tables), I'm wondering if this will cause performance losses
  due to table-locks etc.
 
  Thanks
 
  --
  MySQL General Mailing List
  For list archives: http://lists.mysql.com/mysql
  To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]
 
 


-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



OPTIMIZE and REPAIR in MySQL-Front 3.0

2004-02-08 Thread Gerald R. Jensen
Buyer beware ...

I was a bit surprised when I learned there was a version 3.0 of MySQL-Front
... the developer of MySQL-Front shut down the project after version 2.5. As
it turns out, this new version is unrelated to the original project created
by Ansgar Becker.

Though it has many of the same attributes, it does not support OPTIMIZE or
REPAIR for MyISAM tables, which I feel is critical shortcoming.

Worse, the developers of this new project are unwilling to consider
implementation of these functions. Several users (myself included) posted
requests in their forum, asking for implemnetatyion of OPTIMIZE and REPAIR.

Their first response was to claim they did not understand the need for
OPTIMIZE and REPAIR. After various responses to clarify the need, one of
them wrote: ... A (sic) serios developer uses an other database type if
MyISAM has problems like this or writes a feature in his application to
handle this problem ... . In other words, they are telling those of us with
systems using MyISAM tables to go fish.

They are charging $25.00 for this utility ... not a great deal of money, but
wasted money if the buyer thinks they are buying an enhanced version of
Ansgar Becker's work.

Gerald Jensen



-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



MySQL-Front: How Do I Get 2 Open Connection-Windows To Enable Opt ion: EXPORT TABLES TO ANOTHER HOST/DB (Like MS SQL Server 2000)

2003-06-17 Thread Eldrid Rensburg
In MySQL-Front 2.5: How Do I Get Two Open Connection-Windows To Enable
Option to EXPORT TABLES TO ANOTHER HOST/DB (Like Microsoft SQL Server
2000) - Can It Be Done ?

This message and any attachments are confidential and intended solely for the 
addressee.
Any unauthorized use, alteration or dissemination is prohibited.
Lawyers Access Web (Pty) Ltd. accepts no liability whatsoever for any loss, whether it 
be direct, indirect or consequential, arising from information made available and 
actions resulting there from.


RE: MySQL-Front: How Do I EXPORT TABLES FROM MYSQL 3.23 TO MS SQ L Server 2000 ?

2003-06-17 Thread Eldrid Rensburg

In MySQL-Front 2.5: How Do I Get Two Open Connection-Windows To Enable
Option to EXPORT TABLES FROM MYSQL 3.23 TO ANOTHER HOST/DB (Like Microsoft
SQL Server 2000) - Can It Be Done ?


Any other ways to EXPORT TABLES FROM MYSQL 3.23 TO Microsoft SQLServer2000 ?

__
This message and any attachments are confidential and intended solely for
the addressee.
Any unauthorized use, alteration or dissemination is prohibited.
Lawyers Access Web (Pty) Ltd. accepts no liability whatsoever for any loss,
whether it be direct, indirect or consequential, arising from information
made available and actions resulting there from.
__

This message and any attachments are confidential and intended solely for the 
addressee.
Any unauthorized use, alteration or dissemination is prohibited.
Lawyers Access Web (Pty) Ltd. accepts no liability whatsoever for any loss, whether it 
be direct, indirect or consequential, arising from information made available and 
actions resulting there from.


SV: MySQL-Front: How Do I EXPORT TABLES FROM MYSQL 3.23 TO MS SQ L Server 2000 ?

2003-06-17 Thread Rodolphe Toots
hi!
maybe i can help here

this is how to do it:
open up 2 connection windows with your source and destination databases
then click on im/export in the menu
select export tables
select which database and check the table/tables you want to export
in the output section on the same dialog select where to export

then click export to commit the export

note that you must have set up connection to your source and destination first before 
doing this

but it is really simple


-Ursprungligt meddelande-
Från: Eldrid Rensburg [mailto:[EMAIL PROTECTED]
Skickat: den 17 juni 2003 12:08
Till: [EMAIL PROTECTED]
Ämne: RE: MySQL-Front: How Do I EXPORT TABLES FROM MYSQL 3.23 TO MS SQ
L Server 2000 ?
Prioritet: Hög



In MySQL-Front 2.5: How Do I Get Two Open Connection-Windows To Enable
Option to EXPORT TABLES FROM MYSQL 3.23 TO ANOTHER HOST/DB (Like
Microsoft
SQL Server 2000) - Can It Be Done ?


Any other ways to EXPORT TABLES FROM MYSQL 3.23 TO Microsoft
SQLServer2000 ?


__
This message and any attachments are confidential and intended solely
for
the addressee.
Any unauthorized use, alteration or dissemination is prohibited.
Lawyers Access Web (Pty) Ltd. accepts no liability whatsoever for any
loss,
whether it be direct, indirect or consequential, arising from
information
made available and actions resulting there from.

__

This message and any attachments are confidential and intended solely
for the addressee.
Any unauthorized use, alteration or dissemination is prohibited.
Lawyers Access Web (Pty) Ltd. accepts no liability whatsoever for any
loss, whether it be direct, indirect or consequential, arising from
information made available and actions resulting there from.

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



MySQL-Front

2002-09-22 Thread Kevin Smith

Hi All,

Does anyone know what happened to the MySQL-Front project, which was at
http://www.anse.de/mysqlfront/ ?

Thanks,

Kevin


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: MySQL-Front

2002-09-22 Thread Iikka Meriläinen

Hello,

As they say on the site, it is discontinued. My guess is that there were
no active developers. Quite a shame, though, as MySQLFront was simply the
best frontend for MySQL.

I _really_ hope that someone will pick up the development from where it
was left off and continue the development of this excellent frontend.

Best regards,
Iikka

On Sun, 22 Sep 2002, Kevin Smith wrote:

 Hi All,

 Does anyone know what happened to the MySQL-Front project, which was at
 http://www.anse.de/mysqlfront/ ?

 Thanks,

 Kevin


 -
 Before posting, please check:
http://www.mysql.com/manual.php   (the manual)
http://lists.mysql.com/   (the list archive)

 To request this thread, e-mail [EMAIL PROTECTED]
 To unsubscribe, e-mail 
[EMAIL PROTECTED]
 Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php


**
* Iikka Meriläinen   *
* E-mail: [EMAIL PROTECTED] *
* Vaala, Finland *
**


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




RE: MySQL-Front

2002-09-22 Thread Stuart Low

Hrm,

I wouldn't mind taking this over, or at the very least, taking over the
website and releasing the current version. I have quite a bit of Windows
programming experience as it is so I should be able to make patches etc.
where needed.

Anyone know where I can find more info? I can host it at Perlboy.org without
any dramas.

Cheers,

Stuart

---
Perlboy.org - Professional Perl Programming Services
Carpet-Head.com - Sally's Blog


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of
Iikka Meriläinen
Sent: Sunday, 22 September 2002 7:10 PM
To: Kevin Smith
Cc: [EMAIL PROTECTED]
Subject: Re: MySQL-Front


Hello,

As they say on the site, it is discontinued. My guess is that there were
no active developers. Quite a shame, though, as MySQLFront was simply the
best frontend for MySQL.

I _really_ hope that someone will pick up the development from where it
was left off and continue the development of this excellent frontend.

Best regards,
Iikka

On Sun, 22 Sep 2002, Kevin Smith wrote:

 Hi All,

 Does anyone know what happened to the MySQL-Front project, which was at
 http://www.anse.de/mysqlfront/ ?

 Thanks,

 Kevin


 -
 Before posting, please check:
http://www.mysql.com/manual.php   (the manual)
http://lists.mysql.com/   (the list archive)

 To request this thread, e-mail [EMAIL PROTECTED]
 To unsubscribe, e-mail
[EMAIL PROTECTED]
 Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php


**
* Iikka Meriläinen   *
* E-mail: [EMAIL PROTECTED] *
* Vaala, Finland *
**


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail
[EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php



-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




RE: MySQL-Front

2002-09-22 Thread Stuart Low

Interesting,

http://mysqlfront.sstienemann.de/

Still works.

Stuart

---
Perlboy.org - Professional Perl Programming Services
Carpet-Head.com - Sally's Blog


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of
Iikka Meriläinen
Sent: Sunday, 22 September 2002 7:10 PM
To: Kevin Smith
Cc: [EMAIL PROTECTED]
Subject: Re: MySQL-Front


Hello,

As they say on the site, it is discontinued. My guess is that there were
no active developers. Quite a shame, though, as MySQLFront was simply the
best frontend for MySQL.

I _really_ hope that someone will pick up the development from where it
was left off and continue the development of this excellent frontend.

Best regards,
Iikka

On Sun, 22 Sep 2002, Kevin Smith wrote:

 Hi All,

 Does anyone know what happened to the MySQL-Front project, which was at
 http://www.anse.de/mysqlfront/ ?

 Thanks,

 Kevin


 -
 Before posting, please check:
http://www.mysql.com/manual.php   (the manual)
http://lists.mysql.com/   (the list archive)

 To request this thread, e-mail [EMAIL PROTECTED]
 To unsubscribe, e-mail
[EMAIL PROTECTED]
 Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php


**
* Iikka Meriläinen   *
* E-mail: [EMAIL PROTECTED] *
* Vaala, Finland *
**


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail
[EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php



-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




MySQL-Front Discontinued

2002-09-11 Thread Gerald Jensen

I went to http://www.anse.de/mysqlfront/ today ... the notice posted on the
site says MySQL-Front - This project has been discontinued.

Too bad ... Ansgar Becker developed a truly useful, powerful MySQL database
management tool for us Windoze users.


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




RE: MySQL-Front Discontinued

2002-09-11 Thread Manuel Villasante

I second that opinion.

-Original Message-
From: Gerald Jensen [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, September 11, 2002 3:02 PM
To: [EMAIL PROTECTED]
Subject: MySQL-Front Discontinued


I went to http://www.anse.de/mysqlfront/ today ... the notice posted on the
site says MySQL-Front - This project has been discontinued.

Too bad ... Ansgar Becker developed a truly useful, powerful MySQL database
management tool for us Windoze users.


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail
[EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: MySQL-Front Discontinued

2002-09-11 Thread Gabriele Carioli

Hi.

 Too bad ... Ansgar Becker developed a truly useful,
 powerful MySQL database management tool for us Windoze
 users.

The support forum is still active:

http://mysqlfront.venturemedia.de/

According to the moderator, Ansgar is neither going to make it
commercial nor willing to make it open source.

I wonder why.


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: MySQL-Front Discontinued

2002-09-11 Thread Patrick

I share in that, Ansgar developed a very commercially sound product that he
shared with the community.

Thank-you Ansgar,

[EMAIL PROTECTED]
Patrick Sherrill
And avid MySQLFront fan and user.
CocoNet Corporation


- Original Message -
From: Manuel Villasante [EMAIL PROTECTED]
To: 'Gerald Jensen' [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Wednesday, September 11, 2002 6:04 PM
Subject: RE: MySQL-Front Discontinued


 I second that opinion.

 -Original Message-
 From: Gerald Jensen [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, September 11, 2002 3:02 PM
 To: [EMAIL PROTECTED]
 Subject: MySQL-Front Discontinued


 I went to http://www.anse.de/mysqlfront/ today ... the notice posted on
the
 site says MySQL-Front - This project has been discontinued.

 Too bad ... Ansgar Becker developed a truly useful, powerful MySQL
database
 management tool for us Windoze users.


 -
 Before posting, please check:
http://www.mysql.com/manual.php   (the manual)
http://lists.mysql.com/   (the list archive)

 To request this thread, e-mail [EMAIL PROTECTED]
 To unsubscribe, e-mail
 [EMAIL PROTECTED]
 Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

 -
 Before posting, please check:
http://www.mysql.com/manual.php   (the manual)
http://lists.mysql.com/   (the list archive)

 To request this thread, e-mail [EMAIL PROTECTED]
 To unsubscribe, e-mail
[EMAIL PROTECTED]
 Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php



-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




RE: MySQL-Front Discontinued

2002-09-11 Thread Muir, Michael (OTS-EDH)

Maybe the code is horrendous.

-mike

 -Original Message-
 From: Gabriele Carioli [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, September 11, 2002 3:22 PM
 To: MySQL
 Subject: Re: MySQL-Front Discontinued
 
 
 Hi.
 
  Too bad ... Ansgar Becker developed a truly useful,
  powerful MySQL database management tool for us Windoze
  users.
 
 The support forum is still active:
 
 http://mysqlfront.venturemedia.de/
 
 According to the moderator, Ansgar is neither going to make it
 commercial nor willing to make it open source.
 
 I wonder why.
 
 
 -
 Before posting, please check:
http://www.mysql.com/manual.php   (the manual)
http://lists.mysql.com/   (the list archive)
 
 To request this thread, e-mail [EMAIL PROTECTED]
 To unsubscribe, e-mail 
 [EMAIL PROTECTED]
 Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php
 


Notice: This e-mail and any attachments are intended only for the individual
or company to which it is addressed and may contain information which is
privileged, confidential and prohibited from disclosure or unauthorized use
under applicable law.  If you are not the intended recipient of this e-mail,
you are hereby notified that any use, dissemination, or copying of this
e-mail or the information contained in this e-mail is strictly prohibited by
the sender.  If you have received this transmission in error, please return
the material received to the sender and delete all copies from your system.
Thank you.

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




simple tutorial or guide on using Mysql-Front with M$ Access.

2002-07-23 Thread Chuck Amadi

Hi there is there a simple tutorial on using Mysql-Front with M$ Access 
as i have a number of issues relating to operational M$ Access 2000 DB 
that i want to migrate to Mysql Back-end and preferable utilise 
MySql-Front .

I assume that i use Access Export Feature to migrate tables content to a 
text file (CSV) and thus within MySql-Front Import the Contents of the 
Text File once i have created the tables and db in Mysql-Front.

Plz Help as i have two assignments projects one as a favour for a sole 
trader the other for an established it/sales/magazine startup .

By the way when one create New  add Details in the Databases field how 
does one set the path to a already created access db.
i have tried it without the white space ie C:\MyDocuments\sps.mdb  so i 
assume it must only be relevant to built MySql Databases and that any 
access .mdb will have to go thru Export/Import procedure.

Cheers Chuck Amadi

-- 
Regards 
Chuck Amadi
ICT Dept Systems Programmer
Rhaglenydd Systemau Adran ICT




-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Access a M$ Access 2000 db with MySql-front - could not open database error

2002-07-09 Thread Chuck Amadi

Hi all im aware this might not be the correct forum but i believe it's 
the same beast and it should be ansewered quite easily .
I have been creating a M$ Access Front-end database with a MySql 
Back-end that im about to upload onto a ISP that supports Mysql/Php thus 
i have just downloaded MySql-Front . My problem is how does one connect 
to a previously created and complete M$ Access 2000 Database as i have a 
fullt functional Access thatis in my C:\My Documents So i have tried 
various notations in accessing ie Database (S); SEPARTED BY SEMICOLON (;)

C:\My Documents\sps mini utility.mdb; 1st attempt  error as below

# Could not open database 'C:\My Documents\sps mini utility.mdb' - will 
be ignored.

C;My Documents;sps mini utility.mdb; 2nd attempt error as below

# Could not open database '# Could not open database 'C' - will be ignored.
# Could not open database 'My Documents' - will be ignored.
# Could not open database 'sps mini utility.mdb' - will be ignored.

Any pointers welcomed Cheers

-- 
Regards 
Chuck Amadi
ICT Dept Systems Programmer
Rhaglenydd Systemau Adran ICT




-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




# Could not open database 'C:\My Documents\sps mini utility.mdb' with Mysql-frontI have been creating a M$ Access Front-end database with a MySql Back-end that im about to upload onto a ISP that supports Mysql/Php thus i have just downloaded MySql-Front . My problem is how does one connect to a previously created and complete M$ Access 2000 Database as i have a fullt functional Access thatis in my C:\My Documents So i have tried various notations in accessing ie Database (S); SEPARTED BY SEMICOLON (;)C:\My Documents\sps mini utility.mdb; 1st attempt error as below# Could not open database 'C:\My Documents\sps mini utility.mdb' - will be ignored.C;My Documents;sps mini utility.mdb; 2nd attempt error as below# Could not open database '# Could not open database 'C' - will be ignored.# Could not open database 'My Documents' - will be ignored.# Could not open database 'sps mini utility.mdb' - will be ignored.med Cheers

2002-07-09 Thread chuck amadi

Hi all im aware this might not be the correct forum but i believe it's 
the same beast and it should be ansewered quite easily .
I have been creating a M$ Access Front-end database with a MySql 
Back-end that im about to upload onto a ISP that supports Mysql/Php thus 
i have just downloaded MySql-Front . My problem is how does one connect 
to a previously created and complete M$ Access 2000 Database as i have a 
fullt functional Access thatis in my C:\My Documents So i have tried 
various notations in accessing ie Database (S); SEPARTED BY SEMICOLON (;)

C:\My Documents\sps mini utility.mdb; 1st attempt  error as below

# Could not open database 'C:\My Documents\sps mini utility.mdb' - will 
be ignored.

C;My Documents;sps mini utility.mdb; 2nd attempt error as below

# Could not open database '# Could not open database 'C' - will be ignored.
# Could not open database 'My Documents' - will be ignored.
# Could not open database 'sps mini utility.mdb' - will be ignored.

Any pointers welcomed Cheers

-- 
Regards

Chuck Amadi
ICT Dept Systems Programmer
Rhaglenydd Systemau Adran ICT





-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




RE: Access a M$ Access 2000 db with MySql-front - could not open database error

2002-07-09 Thread Wouter van Vliet

I'm not very sure of myself ... but maybe you'd try to use quotes around the
file path?


--
Alle door mij verzonden email is careware. Dit houdt in dat het alleen
herlezen en bewaard mag worden als je goed omgaat met al het leven op aarde
en daar buiten. Als je het hier niet mee eens bent dien je mijn mailtje
binnen 24 uur terug te sturen, met opgaaf van reden van onenigheid.

All email sent by me is careware. This means that it can only be reread and
kept if you are good for all the life here on earth and beyond. If you don't
agree to these terms, you should return this email in no more than 24 hours
stating the reason of disagreement.


-Oorspronkelijk bericht-
Van: Chuck Amadi [mailto:[EMAIL PROTECTED]]
Verzonden: dinsdag 9 juli 2002 10:38
Aan: [EMAIL PROTECTED]
Onderwerp: Access a M$ Access 2000 db with MySql-front - could not open
database error


Hi all im aware this might not be the correct forum but i believe it's
the same beast and it should be ansewered quite easily .
I have been creating a M$ Access Front-end database with a MySql
Back-end that im about to upload onto a ISP that supports Mysql/Php thus
i have just downloaded MySql-Front . My problem is how does one connect
to a previously created and complete M$ Access 2000 Database as i have a
fullt functional Access thatis in my C:\My Documents So i have tried
various notations in accessing ie Database (S); SEPARTED BY SEMICOLON (;)

C:\My Documents\sps mini utility.mdb; 1st attempt  error as below

# Could not open database 'C:\My Documents\sps mini utility.mdb' - will
be ignored.

C;My Documents;sps mini utility.mdb; 2nd attempt error as below

# Could not open database '# Could not open database 'C' - will be ignored.
# Could not open database 'My Documents' - will be ignored.
# Could not open database 'sps mini utility.mdb' - will be ignored.

Any pointers welcomed Cheers

--
Regards
Chuck Amadi
ICT Dept Systems Programmer
Rhaglenydd Systemau Adran ICT




-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




MySQL-Front Update: Version 2.0 available

2002-01-13 Thread Ansgar Becker

Hello *.*,


The new Version (2.0) of MySQL-Front is available: Download at
http://www.anse.de/mysqlfront/download.php

Again, this version comes with some new features, many bugfixes and
improvements, which were requested by some users.

--
Changes to the last version:
--
New Features:
- Usermanager now with support for editing existing users
- Interface now Windows(r) XP ready
- Added multi-language-support - currently only english and german
  (Set in Tools-Preferences)
- Data-Grids: Specify your favorite font for viewing data - this is
  especially helpful for users which need a different characterset
  (e.g. greek)
- Added table-types InnoDB and BDB on the create-table-window and to
  the table-popupmenu
- Application-startup allows an sql-file as parameter, so you can
  associate .sql-files to be opened with MySQL-Front (this is an
  optional task during installation)
- Added auto-refresh-option to the processlist-tab
- Database-Tree allows dragging databases or tables into query-window
- Query-tab: sql-memo accepts dragged files from Windows(r)-Explorer
- Query-Tab: Added a timer for SQL-execution
- SQL-History: Added menu-item Save as textfile

Improvements:
- ODBC-Import: Cursor for reading tables now server-side instead of
  client-side, which resulted in reading all data on selecting a table
- Query-Tab: Explain-queries are now recognized to return a result-set
- Adding a user automatically flushes privileges
- Database-Tab: Removed annoying drag-and-drop-operation for using the
  Copy table-command
- Date and Time-Fields are now displayed as native strings even when the
  option show native contents of certain fields is turned off.
- Added MySQL ABs new official logo-image in the about-box
- Added some information lines at startup to the sql-history, which
  report statistics and if some illegal database-names were found
- Data-Tab: DB-navigator was moved to the main-toolbar at the top
- Query-Tab: Toolbuttons were moved to the main-toolbar at the top
- Toolbars now drag-and-drop'able
- Tools-Preferences-SQL-Font-dropdownbox now only shows fixed-pitch fonts
- Most internal queries now use the backtick (`) for databases, tables
  and columns
- Copy Table now also copies indexes from the original table
- Field-Editor: Disabled length/set- and default-edit for BLOB- and
  TEXT-fields

Bugfixes:
- Query-tab: fixed some bugs with internal escape-function, which caused
  problems with quotes and doublequotes
- ODBC Import: Selected database will be used instead of mainscreen's
  actual db
- Export tables: fixed bugs with escaping special characters
- Removed access-violation on running queries at startup, when no database
  was selected
- Export Tables: selecting only data without structure exports
  insert-statements now adds commas between values
- Export Tables: export to another host/db, when there is only 1 DB on the
  target-host, clicking on this option does not produce an error message
  like You need at least 2 connection windows.
- Data-tab: sql-errors now don't disturb further functions of Data-Grid
- Removed annoying bug at viewing data fixed, which executed
  SHOW FIELDS... and SHOW KEYS... twice.
- Fixed bug at resizing the pagecontrol at the bottom
- Fixed numerous tiny bugs


see the complete changes-log on http://www.anse.de/mysqlfront/changes.php

-

Thanks for your interest!
Greetings,
  Ansgar Becker (Anse)


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




MySQL-Front can't open some InnoDb tables ***

2001-10-23 Thread BD

I'm trying out MySQL-Front on a Win2k machine and it  is having a problem 
opening some of my InnoDb tables.

I can open any of my InnoDb tables if I explicitly specify the database 
name in the Connection window. But if I leave the database name blank I'll 
see the database tree in the pane on the left. If I try and select one of 
my InnoDb tables from underneath the database node, I'll get an error 
window saying MySQL Error - 1016 Can't open file mytable.InnoDB'. (errno: 
1).  Clicking on the database name says one or more of the InnoDb tables 
are 0KB.  I know there is data in the tables because I can access them in 
MySQL.  This is the same table that I was able to open in MySQL-Front when 
I specified the database explicitly in the Connection window.

So why does MySQL-Front sometimes have a problem opening InnoDb tables? TIA

Brent 

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




MySQL-Front 1.22 available

2001-07-16 Thread Ansgar Becker

Hi *.*,

MySQL Front 1.22 is available - download at
http://anse.de/mysqlfront/download.php


Changes:

1.22:
- Added option in preferences-dialog: Show native field-contents for
  Text-, BLOB- and Date-Fields
- Changed Default Column-width in datagrids to Maximium
  column-width, which means, that only columns are resized, which are
  bigger than this value, not just all columns

1.21:
- no longer called beta!
- Default column-width (preferences) applies to grid on the query-tab, too
- BLOB-Editor was moved to the bottom of window - a new PageControl
  manages the three Tabsheets SQL-History, BLOB-Editor and SQL-Filter.
  Therefore the BLOB-Editor and the Filter-Dialog were removed
- Specify table-type on the create-table-window (ISAM, MYISAM, MERGE,
  HEAP, automatic or userdefined)
- Table-Tab: optimize-/check-/analyze-/repair-commands in the
  context-menu now apply to all selected tables, not only to the one, which
  has focus
- Data-Tab: enum-fields show always their real values, not their boolean
  equivalents like TRUE or FALSE
- Advanced Table-Propertis shows all selected tables, not only the one,
  which has focus
- Limit checkbox checks/unchecks the limit-menu-command
- Database-Tabsheet: re-organized popupmenu-structure
- Database-Tabsheet: Added a Copy Table-function, which executes a
  user-defined CREATE TABLE ... SELECT ... FROM ...-statement
- Database-Tab: Added a Change table-type..-function (ISAM, MYISAM,
  MERGE, HEAP or userdefined)
- Database-Tab: New Column: Size - which represents the KB used on the
  server for the table
- Print tables-list, table-structure, variables-list and so on with a
  simple printing dialog
- Renaming a table doesn't add the old table to the database-tree
- Changed the create-/drop-database-commands to use the internal
  API-function - this allows creating/dropping dbs with not quite legal
  names (e.g. with dots in it: my.database)
- Fixed bugs in internally used string-functions
- Fixed a bug on the Insert record-button
- Bugfix: Not maximized windows causes every new window to be not
  maximized too
- ODBC-Import: Asks for username and password now on selecting a DSN
- Updated libmysql.dll to latest version (3.23.39)

Greetings,
Ansgar Becker




-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




MySQL-Front 1.19 available

2001-06-20 Thread Ansgar Becker

Hello *.*


The new Version (1.19beta) of MySQL-Front is available: Download at
http://www.anse.de/mysqlfront/download.php

The main reason for this update is the new editing-grid, which was requested
by many users. I said goodbye to the old component (StringAlignGrid) and
implemented the ZEOS Database Objects. Special thanks go to Capella
Development Group.


Changes to the last version:

- Data-Tab: Edit data with a standard data-aware grid-component and a
  DB-Navigator (Buttons for editing, deleting and inserting)
- Support for BLOBs now: Bitmap/GIF/JPEG-Support
- Data-Tab: Set complex filter for where-clauses now
- Copying/Saving data to HTML-tables now generates cleaner HTML and
  doesn't stop before last record
- Copying/Saving CSV-data now with field-terminator, field-encloser and
  line-terminator (specified in preferences)
- Setting a table-comment with quotes now works
- Fixed access violation on application exit
- Query-Tab: Loaded SQL-Files no longer disappear from dropdown-menu
  after exit



Thanks for your interest!
Greetings,
  Ansgar Becker (Anse)



-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




MySQL-Front Update

2001-06-05 Thread Ansgar Becker

Hi everybody,


The new Version (1.18beta) of MySQL-Front is available: Download at
http://www.anse.de/mysqlfront/download.php

Again, this version comes with many bugfixes, enhancements and some new
features, which were requested by some users.


Changes to the last version:

- Removed access-violations on renaming and deleting tables
- Slightly reorganized main-menu-commands (Extra is now Tools)
- Removed parse-error after SHOW PROCESSLIST
- New: Import databases through ODBC or directly read from MS-Access-Files
  now! (beta-stadium)
- New: Table-Diagnostics - optimize, check, repair and analyze tables
  through the menu-command Tools-Table-Diagnostics or directly through
  the context-menu of one table
- New: Index-Editor - manage (concatenated) keys in the
  field-editor-window
- Import Textfile: move columns up and down to customize your CSV-Data
- Export tables - 2 New ouput-options:
  - Another Database on the same host
  - A database on another host, which is connected by MySQL-Front. This
allows a direct replication between two MySQL-hosts(!)
- Database-Tree: if a database is selected, rightclick gives you a Drop
  Database-command, if a table is selected, it shows a Drop Table-command
  and the DB-command is disabled. In addition, I removed the shortcut del,
  because some users wrote me, that this can result in accidently removing a
  database.
- Database-Tree: Refreshing the database-tree doesn't set the first entry
  as selected item, but remembers the last selected table or database
- Database-Tab: If host-version = 3.23.00, MySQL-Front uses SHOW TABLE
  STATUS instead of SELECT COUNT(*) for each table. If version = 3.23.00
  Type, Creation-Time and Comment are additionally shown
- Database-Tab: Select more than one table at once now = Drop or Empty
  multiple tables
- Data-Tab: Click on column-headers now for ordering records
- Data-Tab: updates and deletes within the data-tab without having a primary
  key in a table are done with the pseudo-clause where Column1='foo' and
  Column2='bar'... = therefore the message No primary key is defined...
  was removed.
- Data-Tab: Fixed bug at deleting and updating records with multiple primary
  keys, which had not the same sequence-order as the fields
- Data-Tab: On updates only changed fields are included in where-clause
- Data-Tab / Query-Tab: Copy contents as HTML-Table - makes a formatted
  HTML-Table out of all rows and copies it to Clipboard
- Field-Editor now allows adding new fields between existing fields
- Preferences: Log last n lines in the SQL-history - this is especially
  usefull, if you're executing very large SQL-Scripts, which were logged
  after executing and wasting an enourmous amount of RAM
- Preferences: Configure your favorite color-coding scheme in
  Tools-Preferences
- Query-Tab: Now click on the dropdown-menu-command Selection, if you want
  only a range of the sql-script to be executed.
- Query-Tab: When executing one or more queries, Errors are collected at
  first and shown at the end of the script-execution. They don't stop the
  whole SQL-script now.

-

Thanks for your interest!
Greetings,
  Ansgar Becker (Anse)





-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: MySQL front end tool

2001-05-25 Thread mySQLDAC

Hello Alice,

Friday, May 25, 2001, 7:14:23 AM, you wrote:

A Hi, i am a win2k professional user, 
A and i would like to get a mySQL front end tools which can make 
A mySQL to be work more user friendly.
A currently i am using MySQL-Front, for those who had tried out others this kind of 
tools, 
A pls recommend any others tools that u think is more powerful, efficient and 
effective to me.
A by the way, i am just looking for those freeware product.


Try this: http://www.visualphpstudio.com/article.php?sid=11




---
Best regards,
Edward Smirnov 
microOLAP Technologies LLC
mailto:[EMAIL PROTECTED]

Delphi/C++ Builder DB Connectivity components for:

mySQL- http://www.microolap.com/mysqldac.htm
Sybase ASA   - http://www.microolap.com/asadac.htm
Sybase ASE   - http://www.microolap.com/asedac.htm
MS SQL   - Coming soon!
MySQLCentral - Coming soon!



-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




RE: MySQL front end tool

2001-05-25 Thread Crercio Osmaildo da Silva

Hi,
 
Try DBTools ( http://dbtools.vila.bol.com.br
http://dbtools.vila.bol.com.br ). It's a Win32 client for mySQL, free, and
has lot of features, including an Import/Export Wizard to help you convert
other sources to mySQL.
 
[]'s
 
Crercio O. Silva

-Original Message-
From: Alice [mailto:[EMAIL PROTECTED]]
Sent: sexta-feira, 25 de maio de 2001 00:14
To: [EMAIL PROTECTED]
Subject: MySQL front end tool


Hi, i am a win2k professional user, 
and i would like to get a mySQL front end tools which can make 
mySQL to be work more user friendly.
currently i am using MySQL-Front, for those who had tried out others this
kind of tools, 
pls recommend any others tools that u think is more powerful, efficient and
effective to me.
by the way, i am just looking for those freeware product.
 
thanx !




RE: MySQL front end tool

2001-05-25 Thread Bruce Stewart

Also
http://www.mysql.com/Downloads/Contrib/MyTool-DLL_for_VB_and_MySQL.zip

-Original Message-
From: Crercio Osmaildo da Silva [mailto:[EMAIL PROTECTED]]
Sent: Fri, 25 May 2001 14:17
To: [EMAIL PROTECTED]
Subject: RE: MySQL front end tool


Hi,

Try DBTools ( http://dbtools.vila.bol.com.br
http://dbtools.vila.bol.com.br ). It's a Win32 client for mySQL, free, and
has lot of features, including an Import/Export Wizard to help you convert
other sources to mySQL.

[]'s

Crercio O. Silva

-Original Message-
From: Alice [mailto:[EMAIL PROTECTED]]
Sent: sexta-feira, 25 de maio de 2001 00:14
To: [EMAIL PROTECTED]
Subject: MySQL front end tool


Hi, i am a win2k professional user,
and i would like to get a mySQL front end tools which can make
mySQL to be work more user friendly.
currently i am using MySQL-Front, for those who had tried out others this
kind of tools,
pls recommend any others tools that u think is more powerful, efficient and
effective to me.
by the way, i am just looking for those freeware product.

thanx !



-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




MySQL front end tool

2001-05-24 Thread Alice



Hi, i am a win2k professional user, 
and i would like to get a mySQL front end tools 
which can make 
mySQL to be work more user friendly.
currently i am using MySQL-Front, for those who had 
tried out others this kind of tools, 

pls recommend any others tools 
that u think is more powerful, efficient and effective to me.
by the way, i am just looking for those freeware 
product.

thanx !

/---\

Confidential and/ or privileged information may be contained in this
e-mail and any attachments transmitted with it ('Message'). If you are
not the addressee indicated in this Message (or responsible for 
delivery of this Message to such person),you are hereby notified that
any dissemination, distribution, printing or copying of this Message or
any part thereof is prohibited. Please delete this Message if received 
in  error and advise the sender by return e-mail. Opinions, conclusions
and other information in this Message that do not relate to the 
official business of this company shall be understood as neither given
nor endorsed by this company.

This mail is certified Virus Free by *ProtectNow! (InternetNow Sdn Bhd) 
*Scanner Engine powered by Norman Virus Control

\--/



-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php


mysql Front

2001-05-08 Thread TWooly

I have downloaded mysql front and I was wandering how on the server end I
can connect to it from a remote location.  I keep getting 'hostname is not
allowed to connect to this mysql server.  I do have a static ip at this
remote location.  I am new to mysql so sorry if this has already been
answered.
Thanks


Todd Woolums
Wescris Solutions
http://www.wescris.com
[EMAIL PROTECTED]


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: mysql Front

2001-05-08 Thread TWooly

I have a dedicated server in a colocation data center and I have root access
but I would like to use mysqlfront(http://www.mysqlfront.de)  to administer
the mysql server from a specific location my static ip on a different
computer.  Sorry should have been more clear about it.

Todd Woolums
Wescris Solutions
http://www.wescris.com
[EMAIL PROTECTED]

- Original Message -
From: Rolf Hopkins [EMAIL PROTECTED]
To: TWooly [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Tuesday, May 08, 2001 8:41 PM
Subject: Re: mysql Front


 You mean mysql client?!!  and what about the mysql server?  Is it running
on
 your ISP??  Some ISP's do not allow remote access.  You also need to read
Ch
 6 and the GRANT and REVOKE statements in Ch 7

 - Original Message -
 From: TWooly [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Wednesday, May 09, 2001 0:55
 Subject: mysql Front


  I have downloaded mysql front and I was wandering how on the server end
I
  can connect to it from a remote location.  I keep getting 'hostname is
 not
  allowed to connect to this mysql server.  I do have a static ip at this
  remote location.  I am new to mysql so sorry if this has already been
  answered.
  Thanks
 
  
  Todd Woolums
  Wescris Solutions
  http://www.wescris.com
  [EMAIL PROTECTED]
 
 
  -
  Before posting, please check:
 http://www.mysql.com/manual.php   (the manual)
 http://lists.mysql.com/   (the list archive)
 
  To request this thread, e-mail [EMAIL PROTECTED]
  To unsubscribe, e-mail
 [EMAIL PROTECTED]
  Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: mysql Front

2001-05-08 Thread Rolf Hopkins

Ah! ok, maybe I won't be much help after all.  Only thing I can think of
would be your privilege tables.

- Original Message -
From: TWooly [EMAIL PROTECTED]
To: Rolf Hopkins [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Wednesday, May 09, 2001 11:58
Subject: Re: mysql Front


 I have a dedicated server in a colocation data center and I have root
access
 but I would like to use mysqlfront(http://www.mysqlfront.de)  to
administer
 the mysql server from a specific location my static ip on a different
 computer.  Sorry should have been more clear about it.
 
 Todd Woolums
 Wescris Solutions
 http://www.wescris.com
 [EMAIL PROTECTED]

 - Original Message -
 From: Rolf Hopkins [EMAIL PROTECTED]
 To: TWooly [EMAIL PROTECTED]; [EMAIL PROTECTED]
 Sent: Tuesday, May 08, 2001 8:41 PM
 Subject: Re: mysql Front


  You mean mysql client?!!  and what about the mysql server?  Is it
running
 on
  your ISP??  Some ISP's do not allow remote access.  You also need to
read
 Ch
  6 and the GRANT and REVOKE statements in Ch 7
 
  - Original Message -
  From: TWooly [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Sent: Wednesday, May 09, 2001 0:55
  Subject: mysql Front
 
 
   I have downloaded mysql front and I was wandering how on the server
end
 I
   can connect to it from a remote location.  I keep getting 'hostname
is
  not
   allowed to connect to this mysql server.  I do have a static ip at
this
   remote location.  I am new to mysql so sorry if this has already been
   answered.
   Thanks
  
   
   Todd Woolums
   Wescris Solutions
   http://www.wescris.com
   [EMAIL PROTECTED]
  
  
   -
   Before posting, please check:
  http://www.mysql.com/manual.php   (the manual)
  http://lists.mysql.com/   (the list archive)
  
   To request this thread, e-mail [EMAIL PROTECTED]
   To unsubscribe, e-mail
  [EMAIL PROTECTED]
   Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php
 
 


 -
 Before posting, please check:
http://www.mysql.com/manual.php   (the manual)
http://lists.mysql.com/   (the list archive)

 To request this thread, e-mail [EMAIL PROTECTED]
 To unsubscribe, e-mail
[EMAIL PROTECTED]
 Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




RE: MySQL-Front

2001-01-23 Thread Lee Jenkins



Yes, I've tried many as well and like MySQL Front the best.

lee

-Original Message-
From: Jose Ostos [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, January 23, 2001 12:20 PM
To: MySql List
Subject: Re: MySQL-Front


Of the diferent tools I have tried, I have found this one to be very
complete and useful. I agree it should be included.

Jose Ostos

- Original Message -
From: "Ansgar Becker" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, January 23, 2001 7:49 AM
Subject: MySQL-Front


 Hi everybody,

 I'd like to add MySQL-Front (look at http://my.anse.de/ for download) to
the
 list of downloads at mysql.com. On the page
 http://www.mysql.com/downloads/contrib.html you can find any clients for
 MySQL. Since I released version 1.16 of MySQL-Front, it is relative stable
 and good enough to be added to this list (I hope so). What do you think?

 Greetings,
 Ansgar Becker
 [EMAIL PROTECTED]


 -
 Please check "http://www.mysql.com/Manual_chapter/manual_toc.html" before
 posting. To request this thread, e-mail [EMAIL PROTECTED]

 To unsubscribe, send a message to the address shown in the
 List-Unsubscribe header of this message. If you cannot see it,
 e-mail [EMAIL PROTECTED] instead.



-
Please check "http://www.mysql.com/Manual_chapter/manual_toc.html" before
posting. To request this thread, e-mail [EMAIL PROTECTED]

To unsubscribe, send a message to the address shown in the
List-Unsubscribe header of this message. If you cannot see it,
e-mail [EMAIL PROTECTED] instead.


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: MySQL-Front

2001-01-23 Thread Steve Ruby


I thought I should send this to the regular mysql list as there
are many mysql users who run DB on unix but must use windows
for a workstation and remote administration.

This is an excellent front-end.. It has the best UI of any of the
other windows front-ends I've seen, it is very fast, this is a good
program, this is the first I've heard of it but I'll be investigating
it's further...

Steve

 
 - Original Message -
 From: "Ansgar Becker" [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Tuesday, January 23, 2001 7:49 AM
 Subject: MySQL-Front
 
  Hi everybody,
 
  I'd like to add MySQL-Front (look at http://my.anse.de/ for download) to
 the
  list of downloads at mysql.com. On the page
  http://www.mysql.com/downloads/contrib.html you can find any clients for
  MySQL. Since I released version 1.16 of MySQL-Front, it is relative stable
  and good enough to be added to this list (I hope so). What do you think?
 
  Greetings,
  Ansgar Becker
  [EMAIL PROTECTED]

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php