Project file

JFerr

Member
Hi,

I'm using PL/SQL Developer 12 and wanted some information about the project file.

The project file has a files section([Files]) and there are stated all the files that are included in the project.
e.g.
[Files]
1,4,,,file_folder\file1.sql
1,4,,,file_folder\file2.sql

There are a few commas and numbers before the file, I know the second number is linked to the file checkbox and I think the first one is the type of window but I wanted to know more about the possible values and their meaning.
Also is there a way to place a comment associated to a file in the Project Items tab? (not talking about the Notes tab)

Thanks
 
The first item is the window type:

1 = SQL Window
2 = Test Window
3 = Program Window
4 = Command Window
6 = Report Window

The second item are the project item indicators:

Bit 0 = Read-Only indicator
Bit 1 = Spec & Body indicator
Bit 2 = Compile Enabled indicator

The third and fourth item are the object owner and name if the project item is a database object.

The fifth item is the (relative or absolute) file name.

Beyond the notes there are no other comment options.
 
Back
Top