Viewing 3 posts - 1 through 3 (of 3 total)
This is being called from an asp.net application
/****** Object: Table [dbo].[Person] Script Date: 09/04/2014 09:47:27 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[Person](
[PersonId] [char](9) NOT...
September 4, 2014 at 7:51 am
CREATE TABLE [dbo].[Person](
[PersonId] [char](9) NOT NULL,
[Password] [varchar](10) NULL,
[FirstName] [nvarchar](50) NULL,
[LastName] [nvarchar](50) NULL,
September 4, 2014 at 7:20 am
That still didn't work
Puts ????? in firstname field
September 4, 2014 at 7:17 am
Viewing 3 posts - 1 through 3 (of 3 total)