Click here to Skip to main content
15,917,618 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Fastest DATABASE protcol? Pin
Miguel Lopes21-Jul-03 2:29
Miguel Lopes21-Jul-03 2:29 
GeneralRe: Fastest DATABASE protcol? Pin
Lars [Large] Werner21-Jul-03 3:32
professionalLars [Large] Werner21-Jul-03 3:32 
GeneralRe: Fastest DATABASE protcol? Pin
John M. Drescher21-Jul-03 3:56
John M. Drescher21-Jul-03 3:56 
GeneralRe: Fastest DATABASE protcol? Pin
Lars [Large] Werner21-Jul-03 4:13
professionalLars [Large] Werner21-Jul-03 4:13 
GeneralRe: Fastest DATABASE protcol? Pin
John M. Drescher21-Jul-03 4:28
John M. Drescher21-Jul-03 4:28 
GeneralRe: Fastest DATABASE protcol? Pin
Lars [Large] Werner21-Jul-03 4:35
professionalLars [Large] Werner21-Jul-03 4:35 
GeneralRe: Fastest DATABASE protcol? Pin
John M. Drescher21-Jul-03 4:46
John M. Drescher21-Jul-03 4:46 
GeneralRe: Fastest DATABASE protcol? Pin
Ian Darling21-Jul-03 5:17
Ian Darling21-Jul-03 5:17 
Miguel Lopes wrote:
MySQL is probably the fastest, but its also very limited in terms of SQL advanced features. SQL server is vgood and only gets slow when you use it through MSDE.

I would have to disagree with some of that. I've run SQL Server 2000 and MySQL on my own server (a P2-400), and the performance of MySQL, while acceptable, is nowhere near as fast as SQL Server 2000 - of course, this was a year ago, so YMMV. Plus that version of MySQL didn't support stored procedures, which was a big turn off for me anyway.

MSDE is slower because it's targetted at a small number of users - it's not intended for enterprise databases

Miguel Lopes wrote:

Also the key feature to a fast DB acess is a good DB design and avoiding complex queries. If you need complex results, make simple queries and then work it out in the client side. C++ is a very powerfull and fast language, so y(?) overloading the DB server with complex queries, when you can produce faster results using a bit of code when handling results?


I agree with the first part of the statement - I prefer that complicated results are calculated as you go along, and then can be pulled out of the database later on. However, if I can't do that, I frequently do the calculations in SQL, because it's good at set data manipulation and transformations, instead of in the client, which is easier to get wrong and (IMO) slower. You also reduce the data you are transferring between client and server, which is often the bottleneck in applications.

My 2p, anyway

--
Ian Darling
GeneralRe: Fastest DATABASE protcol? Pin
Miguel Lopes21-Jul-03 5:36
Miguel Lopes21-Jul-03 5:36 
GeneralRe: Fastest DATABASE protcol? Pin
Ian Darling21-Jul-03 5:56
Ian Darling21-Jul-03 5:56 
QuestionHow to shut off Floppy's LED rapidly Pin
FlyingDancer20-Jul-03 22:00
FlyingDancer20-Jul-03 22:00 
AnswerRe: How to shut off Floppy's LED rapidly Pin
Toni7820-Jul-03 22:28
Toni7820-Jul-03 22:28 
GeneralRe: How to shut off Floppy's LED rapidly Pin
FlyingDancer20-Jul-03 22:51
FlyingDancer20-Jul-03 22:51 
GeneralRe: How to shut off Floppy's LED rapidly Pin
Toni7820-Jul-03 23:01
Toni7820-Jul-03 23:01 
GeneralRe: How to shut off Floppy's LED rapidly Pin
FlyingDancer20-Jul-03 23:09
FlyingDancer20-Jul-03 23:09 
GeneralRe: How to shut off Floppy's LED rapidly Pin
Toni7820-Jul-03 23:18
Toni7820-Jul-03 23:18 
GeneralRe: How to shut off Floppy's LED rapidly Pin
Ryan Binns20-Jul-03 23:27
Ryan Binns20-Jul-03 23:27 
GeneralRe: How to shut off Floppy's LED rapidly Pin
FlyingDancer21-Jul-03 3:16
FlyingDancer21-Jul-03 3:16 
GeneralRe: How to shut off Floppy's LED rapidly Pin
Ryan Binns21-Jul-03 3:32
Ryan Binns21-Jul-03 3:32 
GeneralRe: How to shut off Floppy's LED rapidly Pin
FlyingDancer21-Jul-03 3:47
FlyingDancer21-Jul-03 3:47 
GeneralMFC Question Pin
DaveE9th20-Jul-03 21:42
DaveE9th20-Jul-03 21:42 
GeneralRe: MFC Question Pin
Bob Stanneveld20-Jul-03 22:19
Bob Stanneveld20-Jul-03 22:19 
GeneralRe: MFC Question Pin
DaveE9th21-Jul-03 6:45
DaveE9th21-Jul-03 6:45 
GeneralRe: MFC Question Pin
Bob Stanneveld21-Jul-03 8:25
Bob Stanneveld21-Jul-03 8:25 
GeneralRe: MFC Question Pin
DaveE9th21-Jul-03 20:28
DaveE9th21-Jul-03 20:28 

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.