Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference between SqlCeConnection and SqlConnection C#?

Tags:

c#

database

I am using Eclipse with its database. I am using SqlCeConnection for connecting however, it doesn't seem to hold the data I don't know why. When I right click on the db and say "show table data", it shows inside null.

I saw SqlConnection. What is the difference between SqlCeConnection and SqlConnection? And do you have any idea why there is no table data in my database?

like image 516
Ada Avatar asked Mar 21 '11 16:03

Ada


1 Answers

SqlConnection is for SQL Server Databases

SqlCeConnection is for the Compact Edition

like image 67
HadleyHope Avatar answered Nov 15 '22 00:11

HadleyHope