简体   繁体   English

使用eclipse或netbeans开发时,你使用phpmyadmin来管理mysql吗?

[英]when developing using eclipse or netbeans, do you use phpmyadmin to admin mysql?

使用eclipse或NetBeans进行开发时,是否使用phpmyadmin来管理MySQL,还是有一个插件可以使事物更加集成?

I don't think that this "integration" is so important. 我不认为这种“整合”如此重要。 What are you integrating? 你在整合什么? It's just another perspective rather than ALT+TAB. 这只是另一个视角而不是ALT + TAB。

For MySQL I use MySQL Administrator and MySQL Query Browser. 对于MySQL,我使用MySQL Administrator和MySQL Query Browser。 It's just a matter of UI and provided functionality preference. 这只是UI的问题,并提供了功能偏好。 It's not a matter of being a plugin or not. 这不是一个插件的问题。

NetBeans has very good database support , including MySQL . NetBeans具有非常好的数据库支持 ,包括MySQL So there is no need for an external admin tool if you are using NetBeans IMO. 因此,如果您使用NetBeans IMO,则无需外部管理工具。

In Eclipse, the database support that you get with the Eclipse Data Tools Platform (DTP) is more "Query" oriented, not really "admin" oriented and you won't get wizards to create tables and so on. 在Eclipse中,您使用Eclipse Data Tools Platform(DTP)获得的数据库支持更加面向“查询”,而不是真正的“管理”导向,您将无法获得创建表等的向导。 If this is what you're looking for, then you may need an external tool when using Eclipse (phpmyadmin, Toad, MySQL admin tool, whatever). 如果这是您正在寻找的,那么在使用Eclipse时可能需要一个外部工具(phpmyadmin,Toad,MySQL管理工具,等等)。

I use the Netbeans database integration , it has several useful features: 我使用Netbeans数据库集成 ,它有几个有用的功能:

  • completion 完成
  • insert/delete/edit tables in the IDE 在IDE中插入/删除/编辑表
  • connect any database (I use it with MySQL, Oracle and hsqldb) 连接任何数据库(我使用MySQL,Oracle和hsqldb)

For Eclipse you may use DBViewer . 对于Eclipse,您可以使用DBViewer It's the best DB plugin for Eclipse (IMHO) 它是Eclipse(IMHO)最好的DB插件

我使用MySQL-Front

The first thing i did was learn to use the native CLI tools for mysql. 我做的第一件事是学习使用mysql的原生CLI工具。 There are quite a few, mysql itself, mysladmin, mysqldump, mysqlimport etc. These are very powerful and have many more options than any GUI i have ever seen. 有很多,mysql本身,mysladmin,mysqldump,mysqlimport等。这些功能非常强大,并且拥有比我见过的任何GUI更多的选项。 You do not need to learn all the commands but running, say, mysqladmin and looking at the options will give you an overview of what is there. 你不需要学习所有的命令,但是运行,比如mysqladmin,看看这些选项会给你一个概述。

The second thing to do is to write some scripts at the CLI to do the normal everyday things you want. 第二件事是在CLI上编写一些脚本来完成你想要的日常事务。 These are like a set of tools that you can carry around and adapt as circumstances dictate. 这些就像一套工具,你可以随身携带并根据情况进行调整。

The beauty of doing the two above items means you can work on any system with MySQL on it regardless of OS or GUI's. 执行上述两个项目的好处意味着无论操作系统或GUI如何,您都可以在任何带有MySQL的系统上工作。 It means you can work remotely over slow networks and still get stuff done. 这意味着您可以通过慢速网络远程工作,并且仍然可以完成任务。

After that GUI's and integrated tool are OK and often quicker in visual terms for looking at details. 之后,GUI和集成工具都可以,并且在视觉方面通常可以更快地查看详细信息。 phpmyadmin is good as it will go on most systems. phpmyadmin很好,因为它会在大多数系统上运行。 Never really tried the plugins with Eclipse, used the MySQL GUI tools but find them flaky, however i use a Mac so that might be a factor. 从来没有真正尝试使用Eclipse的插件,使用MySQL GUI工具,但发现它们片状,但我使用Mac,这可能是一个因素。 If you use Mac then Sequel Pro is a usefull tool. 如果你使用Mac,那么Sequel Pro是一个有用的工具。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 使用eclipse / netbeans时,可以使用Maven进行构建吗? - when using eclipse/netbeans, can you make it use the maven to build? 使用Netbeans连接到远程mySQL(cPanel,phpMyAdmin) - Connect to remote mySQL(cPanel,phpMyAdmin) using Netbeans 如何在Netbeans中将DocumentListener与jTextField一起使用? - How do you use DocumentListener with jTextField in Netbeans? 在Eclipse中开发Web应用程序时使用快照库 - Use snapshot library when developing a web app in eclipse 当我使用NetBeans 6.8和Eclipse运行此代码时,输​​出为何不同? - Why do the outputs differ when I run this code using NetBeans 6.8 and Eclipse? 使用Netbeans和Mac开发Java EE Web应用程序时,如何在Mac上停止Glassfish服务器? - How to stop Glassfish server on Mac when developing Java EE web application when using Netbeans and Mac? 使用netbeans与phpmyadmin(wamp)的数据库连接问题 - database connectivity issue using netbeans with phpmyadmin(wamp) 如何在不使用MySql软件的情况下在Netbeans中使用MySQL数据库 - How to Use MySQL Database in Netbeans without using MySql Software 使用Tomcat时如何避免在Eclipse / NetBeans中编写Java代码? - How to avoid writing Java code in Eclipse/NetBeans when using Tomcat? 如何使用列表在netbeans中随机分配数组? - How do you randomize an array in netbeans using a List?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM