Click here to Skip to main content
15,899,754 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
QuestionTextBox Control Pin
John L. DeVito17-Mar-06 6:17
professionalJohn L. DeVito17-Mar-06 6:17 
AnswerRe: TextBox Control Pin
Guffa17-Mar-06 6:37
Guffa17-Mar-06 6:37 
GeneralRe: TextBox Control Pin
John L. DeVito17-Mar-06 7:18
professionalJohn L. DeVito17-Mar-06 7:18 
AnswerRe: TextBox Control Pin
Office Lineman17-Mar-06 7:19
Office Lineman17-Mar-06 7:19 
AnswerRe: TextBox Control Pin
HimaBindu Vejella19-Mar-06 23:47
HimaBindu Vejella19-Mar-06 23:47 
QuestionDetect and ignore missing COM, dll, library Pin
sgub16-Mar-06 15:22
sgub16-Mar-06 15:22 
Questionsql ce Pin
sunny74716-Mar-06 9:35
sunny74716-Mar-06 9:35 
AnswerRe: sql ce Pin
Mike Dimmick18-Mar-06 11:01
Mike Dimmick18-Mar-06 11:01 
SQL Server CE is an in-process database engine more like Microsoft Access than a standalone database server like the desktop SQL Server. Nothing much happens on your device until you deploy or debug your application, when Visual Studio will copy the device runtime components to the device.

I don't recall having to download anything separately from Microsoft before using SQL Server CE with VS.NET 2003. From what I recall the appropriate bits are installed when you install Smart Device support.

To create a new database, create a new instance of the SqlCeEngine class and call the CreateDatabase method. Don't forget to Dispose the SqlCeEngine object when you're done. You'll generally create your tables using SQL DDL statements; for this you'll need a SqlCeConnection, a SqlCeCommand, and use the ExecuteNonQuery method. Again, these objects need to be Disposed when you're finished using them. A using block (in C# and VB 2005) is very useful in ensuring you clean up properly since it automatically calls Dispose for you.

Programming for data access with SQL Server CE is very much like programming for the desktop - you simply use SqlCeConnection where you would use SqlConnection, etc. The SqlConnection class in Compact Framework is used for remote access to a SQL Server 2000 server, if you want to do that.

Stability. What an interesting concept. -- Chris Maunder
QuestionReading in data from GPS(serial Port) Pin
prashantkgupta16-Mar-06 8:59
prashantkgupta16-Mar-06 8:59 
QuestionProblem Publishing with Visual Studio 2005 Pin
kayhustle16-Mar-06 8:56
kayhustle16-Mar-06 8:56 
QuestionIP Cameras Pin
programmingfish15-Mar-06 20:54
programmingfish15-Mar-06 20:54 
AnswerRe: IP Cameras Pin
xlthim15-May-07 9:52
xlthim15-May-07 9:52 
QuestionClicking *Through* a Form? Pin
TheZeusJuice15-Mar-06 16:38
TheZeusJuice15-Mar-06 16:38 
AnswerRe: Clicking *Through* a Form? Pin
Dave Kreskowiak15-Mar-06 17:35
mveDave Kreskowiak15-Mar-06 17:35 
GeneralRe: Clicking *Through* a Form? Pin
TheZeusJuice15-Mar-06 17:48
TheZeusJuice15-Mar-06 17:48 
GeneralRe: Clicking *Through* a Form? Pin
Dave Kreskowiak16-Mar-06 2:35
mveDave Kreskowiak16-Mar-06 2:35 
QuestionFree RAM as by minimize without displaying window Pin
mewashere15-Mar-06 11:57
mewashere15-Mar-06 11:57 
AnswerRe: Free RAM as by minimize without displaying window Pin
Glaxalg15-Mar-06 17:35
Glaxalg15-Mar-06 17:35 
AnswerRe: Free RAM as by minimize without displaying window Pin
Robert Rohde15-Mar-06 17:41
Robert Rohde15-Mar-06 17:41 
GeneralRe: Free RAM as by minimize without displaying window Pin
mewashere16-Mar-06 3:03
mewashere16-Mar-06 3:03 
GeneralRe: Free RAM as by minimize without displaying window Pin
Dave Kreskowiak16-Mar-06 15:11
mveDave Kreskowiak16-Mar-06 15:11 
QuestionPPTP through code Pin
xibalbasd15-Mar-06 10:24
xibalbasd15-Mar-06 10:24 
QuestionWhere to start? Pin
ComplexLifeForm15-Mar-06 5:43
ComplexLifeForm15-Mar-06 5:43 
AnswerRe: Where to start? Pin
TheZeusJuice15-Mar-06 17:27
TheZeusJuice15-Mar-06 17:27 
GeneralRe: Where to start? Pin
ComplexLifeForm15-Mar-06 21:27
ComplexLifeForm15-Mar-06 21:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.