Here is the my table structure:
TABLE [gisadmin].[tbl_harvest_notification](
[audit_id] [uniqueidentifier] NOT NULL,
[harvest_id] [uniqueidentifier] NULL,
[county_fips] char NULL,
[harvest_notif_acres] [decimal](6, 1) NULL,
[harvest_start_date] [datetime] NULL,
[harvest_notif__date] [datetime] NOT NULL,
[harvest_notif__user_id] [uniqueidentifier] NOT NULL,
[harvest_notif_confirmation_num] varchar NOT NULL,
[harvest_notif_mail_planning_maps] [bit] NOT NULL,
[harvest_notif_driving_directions] varchar NULL,
[harvest_notif_lat_degrees] [int] NULL,
[harvest_notif_lat_minutes] [int] NULL,
[harvest_notif_lat_seconds] [decimal](2, 2) NULL,
[harvest_notif_long_degrees] [int] NULL,
[harvest_notif_long_minutes] [int] NULL,
[harvest_notif_long_seconds] [decimal](2, 2) NULL,
[harvest_notif_state_route_num] varchar NULL,
[harvest_notif_xsec_road1] varchar NULL,
[harvest_notif_xsec_road2] varchar NULL,
[harvest_notif_miles_from_xsec] [decimal](2, 1) NULL,
[harvest_notif_direction_from_xsec] varchar NULL,
[harvest_notif__method] varchar NULL,
Also here is the App.Config that I modified for DBSpecific project:
<?xml version="1.0"?>
<configuration>
<appSettings>
<!--add key="Main.ConnectionString" value="data source=dev-db03;initial catalog=VDOF_IFRIS_V2;User ID=gisadmin;Password=d0wnt0wndev;persist security info=False;packet size=4096"/-->
<add key="Main.ConnectionString" value="Data Source =/Temp/IFRISMobile.sdf"/>
</appSettings>
</configuration>
I even tried leaving the default Main.ConnectionString key in there but got the same error.
Thanks