I am willing to write an extension to the .sql editor for VS2010. My goal is to be able to check the SQL queries that are being written and if they are inside a stored procedure, make sure the parameter definition is consistent with the table definition.
For example if I have table Customer(NAME NVARCHAR(86)) and user is typing the following SPROC:
CREATE PROC AddCustomer ( @CName NVARCHAR(50 )
AS
INSERT INTO Customer VALUES (@CName)
I want to give him a warning that parameter definition in sproc is inconsistent with the table definition because CName is defined as NVARCHAR(86) in table but it is defined as NVARCHAR(50) in the proc.
To do such thing I need to parse the query and figure out what is going on, e.g. there is an INSERT statement and the table name is Customer. This would be a lot of work, however, I can see there are numerous VS extensions that do similar stuff with codes (like resharper) so I am pretty sure there should be some objects in VS that has the information about the sql being written otherwise it wouldn't be color coding the sql.
I am trying to figure out as much info as possible for doing this as I have not much experience with extending VS.