Hello, I have a "database solution" project in VS2008 - it generates SQL for more than one DB vendor from some sort of templates. In order to save time, I also have a tool in VS2008 configured (a Python script), which can compile an individual stored procedure. Now, with the Python script I have the freedom of processing the output and have it take on whatever form I want. I am toying with an idea of having these errors and warnings somehow recognized and populating the click-able Error / Warning list. This is what a typical Oracle error looks like:
LINE/COL ERROR
-------- -----------------------------------------------------------------
324/5 PL/SQL: Statement ignored
324/82 PLS-00363: expression 'VSOURCE_SYSTEM_ID' cannot be used as an
assignment target
Warning: Procedure created with compilation errors.
PROCEDURE: ADD_PROPOSED error on creation
Errors for PROCEDURE ADD_PROPOSED:
LINE/COL ERROR
This might be a long shot, but it is worthwhile for me. I do this stuff a lot. Thank you!