SQL Editor plugin Permanently deleted user Created March 22, 2004 14:25 Hi! I need plugin to edit SQL statements. ___/** WBR @author Denis Tsyplakov */
Have you tried the SQL Query plugin
(http://www.intellij.org/twiki/bin/view/Main/SQLQueryPlugin)?
"Denis Tsyplakov" <Tsyplakov_Denis_Y@sterling.ru> wrote in message
news:c3mt6m$3f8$1@is.intellij.net...
>
>
>
Hi!
TH> Have you tried the SQL Query plugin
TH> (http://www.intellij.org/twiki/bin/view/Main/SQLQueryPlugin)?
Yes? but I dont know, that it can be used as editor plugin.
For example
I have file create_db_objects.sql. In ideal I want colorized
editor and keyword popups.
file contains something like this
CREATE TABLE if not exists `booleanTag` (
`id` bigint(20) NOT NULL auto_increment,
`tagTimeStamp` bigint(20) NOT NULL default '0',
`tagName` varchar(100) NOT NULL default '',
`senderName` varchar(100) NOT NULL default '',
`tagQuality` int(11) NOT NULL default '0',
`value` enum("true","false") NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `unique` (`tagTimeStamp`,`tagName`)
) TYPE=MyISAM;
___
/** WBR @author Denis Tsyplakov */