Click here to Skip to main content
15,884,099 members
Home / Discussions / C#
   

C#

 
GeneralRe: FrontPage Web Connection Pin
Heath Stewart29-Jan-04 2:18
protectorHeath Stewart29-Jan-04 2:18 
GeneralRe: FrontPage Web Connection Pin
Adam Hable29-Jan-04 4:02
Adam Hable29-Jan-04 4:02 
GeneralRe: FrontPage Web Connection Pin
Heath Stewart29-Jan-04 4:31
protectorHeath Stewart29-Jan-04 4:31 
QuestionIs COM Interop futureproof? Pin
DavidDunning28-Jan-04 6:40
DavidDunning28-Jan-04 6:40 
AnswerRe: Is COM Interop futureproof? Pin
Heath Stewart28-Jan-04 6:52
protectorHeath Stewart28-Jan-04 6:52 
GeneralC# DataBase Question Pin
mweston28-Jan-04 5:34
mweston28-Jan-04 5:34 
GeneralRe: C# DataBase Question Pin
Mazdak28-Jan-04 5:49
Mazdak28-Jan-04 5:49 
GeneralRe: C# DataBase Question Pin
Heath Stewart28-Jan-04 6:38
protectorHeath Stewart28-Jan-04 6:38 
MSDE is the Microsoft Desktop Engine, and shares most of its components with SQL Server. This can be a hefty install, though. It is definitely faster than Access (and has specialized classes for access it through ADO.NET using the System.Data.SqlClient namespace elements) but it's only free if you have a license for a qualifying product like SQL Server, Access, FrontPage (last I checked), Visual Studio .NET, and perhaps a few others. You can find more information at http://www.microsoft.com/sql/msde/[^].

As far as the speed of Access is concerned, you have to take account for a few things. First, to access Access you must use the generic OLE DB support in ADO.NET (using the Access OLE DB provider) using the System.Data.OleDb namespace elements. This provides generic access through the abstract OLE DB provider implementations so some things you can do in Access won't be possible through ADO.NET. Second, it depends on whether you use a DataSet (think of it as a disconnected recordset) or an OleDbReader. A DataSet takes a while to construct (less if you use a strongly-typed DataSet which you can create in VS.NET easily enough) but provides many advantages like serialization, filtering, relationships, referential integrity, and more. If you use an OleDbReader, it will increase access times but then you must parse and relate (if necessary) any data you read yourself.

 

-----BEGIN GEEK CODE BLOCK-----
Version: 3.21
GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++
-----END GEEK CODE BLOCK-----
GeneralRe: C# DataBase Question Pin
scadaguy28-Jan-04 7:26
scadaguy28-Jan-04 7:26 
GeneralRe: C# DataBase Question Pin
Anonymous28-Jan-04 16:06
Anonymous28-Jan-04 16:06 
GeneralresX Files Pin
gordingin28-Jan-04 5:30
gordingin28-Jan-04 5:30 
GeneralRe: resX Files Pin
Heath Stewart28-Jan-04 6:32
protectorHeath Stewart28-Jan-04 6:32 
GeneralRe: resX Files Pin
gordingin28-Jan-04 6:37
gordingin28-Jan-04 6:37 
GeneralRe: resX Files Pin
Heath Stewart28-Jan-04 6:42
protectorHeath Stewart28-Jan-04 6:42 
GeneralRe: resX Files Pin
gordingin28-Jan-04 6:56
gordingin28-Jan-04 6:56 
QuestionCan C# .NET controls be used in Excel? Pin
EyeOfTheSky28-Jan-04 4:40
EyeOfTheSky28-Jan-04 4:40 
AnswerRe: Can C# .NET controls be used in Excel? Pin
Heath Stewart28-Jan-04 6:27
protectorHeath Stewart28-Jan-04 6:27 
GeneralC# Webservice Deployment Pin
Victor Boctor28-Jan-04 2:57
Victor Boctor28-Jan-04 2:57 
GeneralRe: C# Webservice Deployment Pin
Uwe Keim28-Jan-04 3:19
sitebuilderUwe Keim28-Jan-04 3:19 
GeneralRe: C# Webservice Deployment Pin
Victor Boctor28-Jan-04 10:02
Victor Boctor28-Jan-04 10:02 
GeneralRe: C# Webservice Deployment Pin
Uwe Keim28-Jan-04 20:06
sitebuilderUwe Keim28-Jan-04 20:06 
GeneralRe: C# Webservice Deployment Pin
Mazdak28-Jan-04 3:23
Mazdak28-Jan-04 3:23 
GeneralRe: C# Webservice Deployment Pin
Victor Boctor28-Jan-04 10:10
Victor Boctor28-Jan-04 10:10 
GeneralRe: C# Webservice Deployment Pin
Mazdak28-Jan-04 10:44
Mazdak28-Jan-04 10:44 
GeneralRe: C# Webservice Deployment Pin
Victor Boctor28-Jan-04 12:17
Victor Boctor28-Jan-04 12:17 

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.