B
Brett Miller
I am trying to populate a table in a table in a database I have created
using parameters. The following line doesn't work.
cmd.Parameters.Add(New SqlCeParameter("CUniq", SqlDbType.Shortint))
due to the fact that SqlDbType is not found. (not declared)
I have the following imports.
Imports System.IO
Imports System.Data.SqlServerCe
Imports System.Data.Common
Imports System.Data
The documentation says that SqlDbType enumeration is a member of the
System.Data namespace, but I can't find in the tab completion.
Please, any explanation or commentary is very appreciated...
Regards,
BM
using parameters. The following line doesn't work.
cmd.Parameters.Add(New SqlCeParameter("CUniq", SqlDbType.Shortint))
due to the fact that SqlDbType is not found. (not declared)
I have the following imports.
Imports System.IO
Imports System.Data.SqlServerCe
Imports System.Data.Common
Imports System.Data
The documentation says that SqlDbType enumeration is a member of the
System.Data namespace, but I can't find in the tab completion.
Please, any explanation or commentary is very appreciated...
Regards,
BM