Click here to Skip to main content
15,891,529 members

Comments by Ozzie Mozzie (Top 12 by date)

Ozzie Mozzie 8-Dec-22 17:01pm View    
Thank you. I appreciate your advice and have updated the procedure.
The previous procedure worked ok but as you have pointed out it was leaky. :)
Ozzie Mozzie 13-Mar-15 19:42pm View    
I fixed the typo but it still fails to create the row.
Ozzie Mozzie 13-Mar-15 14:07pm View    
Thanks for picking the typo up that may well be the problem. I fix that and try it as soon as I get the opportunity.
Thanks again.
I will post the result here :)
Ozzie Mozzie 13-Mar-15 6:34am View    
This works when I use SQL Server script but application code still does not work:
USE [PlatinumDB]
GO

INSERT INTO [dbo].[Errors]
(
eName
,eInstance
,eMessage
,eModule
,eProcedure
,eUserId
,eUserMessage
,ecName
,ecCode
,ecDescription
,ecMessage)
VALUES
(N'eName'
,N'eInstance'
,N'eMessage'
,N'eModule'
,N'eProcedure'
,N'eUserId'
,N'eUserMessage'
,N'ecName'
,N'ecCode'
,N'ecDescription'
,N'ecMessage')
GO
Ozzie Mozzie 13-Mar-15 6:12am View    
But there is no stored procedure