Memory Card with SQL Server CE.

  • Thread starter Thread starter Leonardo Castillo
  • Start date Start date
L

Leonardo Castillo

I need to open a database .sdf from a CF Card. How i can define the
directory for the open command in VB.NET ?

Thanks,

Leonardo Castillo
 
Hi,
sqlCeConn.ConnectionString = "data source=\sd card\rrm.sdf"
sqlCeConn.Open()

I evaluate the storage cards on the device, and use System.IO.File.Exists to
determine if the database is in memory, on CF, on SD etc

Pete
 
Back
Top