This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 145181 - No space between table name and open bracket in script for CREATE
Summary: No space between table name and open bracket in script for CREATE
Status: VERIFIED FIXED
Alias: None
Product: db
Classification: Unclassified
Component: Show Data (show other bugs)
Version: 6.x
Hardware: PC Linux
: P3 blocker (vote)
Assignee: _ ahimanikya
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-08-26 16:28 UTC by Roman Mostyka
Modified: 2008-08-28 17:53 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Roman Mostyka 2008-08-26 16:28:54 UTC
1. Rightclick PERSON table and choose "View Data...".
2. Rightclick some row and choose "Show SQL Script for CREATE".

Result: Script is shown:
CREATE TABLE PERSON(NAME VARCHAR(50), JOBTITLE VARCHAR(50), PRIMARY KEY (PERSONID));
There is no space between table name and open bracket.
In the script for INSERT it is:
INSERT INTO TRAVEL.PERSON (NAME, JOBTITLE) VALUES ('Able, Tony', 'CEO');
We should be consistent and I think with space it will be nicer for reading.
Comment 1 _ ahimanikya 2008-08-28 10:47:46 UTC
http://hg.netbeans.org/main/rev/2d613a4b58ef
Comment 2 Roman Mostyka 2008-08-28 14:00:51 UTC
Verified with build 080828.
Comment 3 Quality Engineering 2008-08-28 17:53:19 UTC
Integrated into 'main-golden', available in build *200808281401* on http://bits.netbeans.org/dev/nightly/
Changeset: http://hg.netbeans.org/main/rev/2d613a4b58ef
User: ahimanikya@netbeans.org
Log: #145181 No space between table name and open bracket in script for CREATE