Here's the values for the entry from my web.config file:
objectQualifier="" databaseOwner="dbo" />
So...what's the proper syntax for putting this info into the stored procedure since I have no value for the objectQualifier? I know there's a lot of db people getting a laugh at my expense:-)
INSERT INTO dbo Assemblies ( ?
PackageID,
AssemblyName,
Version
)
VALUES (
@PackageID,
@AssemblyName,
@Version
)
Thanks again,
Paul