Click here to Skip to main content
15,895,667 members
Home / Discussions / Database
   

Database

 
GeneralIterating through DBs/Tables Pin
Christian Graus11-Nov-02 0:03
protectorChristian Graus11-Nov-02 0:03 
GeneralRe: Iterating through DBs/Tables Pin
Daniel Turini11-Nov-02 0:32
Daniel Turini11-Nov-02 0:32 
GeneralRe: Iterating through DBs/Tables Pin
David Salter11-Nov-02 12:02
David Salter11-Nov-02 12:02 
GeneralRe: Iterating through DBs/Tables Pin
Daniel Turini11-Nov-02 20:41
Daniel Turini11-Nov-02 20:41 
GeneralRe: Iterating through DBs/Tables Pin
Christian Graus13-Nov-02 23:31
protectorChristian Graus13-Nov-02 23:31 
GeneralRe: Iterating through DBs/Tables Pin
Christian Graus13-Nov-02 23:35
protectorChristian Graus13-Nov-02 23:35 
QuestionWhich DB to use? Pin
johnb10-Nov-02 21:45
johnb10-Nov-02 21:45 
AnswerRe: Which DB to use? Pin
Daniel Turini10-Nov-02 22:17
Daniel Turini10-Nov-02 22:17 
I would structure this as follows:

For the web application: ASP.NET. Easy to develop, fast, scalable and, because the server is only 1 machine, a one-time 20Mb download will not be a hassle.

For the client: MFC C++ application. Obvious solution.

It's not clear why you need databases on the client: accessing the server database or a local "cached" database?
A) Accessing the server database: develop a web service. It's fast and as easy as running a wizard on VS.NET. The client side is easier with C# or MC++, but even with MFC is a matter of using a couple of CInternet* MFC classes and a bit of MSXML for parsing the resulting document. It's fast to develop and flexible.
B) Local database: if the database is small, you can replace it for a small XML file. This way you do not need to reinvent the wheel, and do not become "glued" to a proprietary file format.
Remember, a XML file is not a high-performance solution for massive database manipulation, specially if you need lots of "GROUP BY", but for simple searchs and updates, MSXML is quite fast and can be a compatible solution with Windows 98.


lazy isn't my middle name.. its my first.. people just keep calling me Mel cause that's what they put on my drivers license. - Mel Feik
GeneralRe: Which DB to use? Pin
johnb10-Nov-02 22:27
johnb10-Nov-02 22:27 
GeneralRe: Which DB to use? Pin
Daniel Turini11-Nov-02 0:24
Daniel Turini11-Nov-02 0:24 
GeneralRe: Which DB to use? Pin
johnb11-Nov-02 0:36
johnb11-Nov-02 0:36 
AnswerRe: Which DB to use? Pin
Christian Graus11-Nov-02 0:29
protectorChristian Graus11-Nov-02 0:29 
GeneralRe: Which DB to use? Pin
johnb11-Nov-02 0:37
johnb11-Nov-02 0:37 
GeneralRelationship problem Pin
leppie10-Nov-02 4:02
leppie10-Nov-02 4:02 
GeneralRe: Relationship problem Pin
Daniel Turini10-Nov-02 22:26
Daniel Turini10-Nov-02 22:26 
Generalcreating a bunch of tables from a central table Pin
Like2Byte8-Nov-02 10:08
Like2Byte8-Nov-02 10:08 
GeneralRe: creating a bunch of tables from a central table Pin
Pyt8-Nov-02 10:17
Pyt8-Nov-02 10:17 
GeneralRe: creating a bunch of tables from a central table Pin
Vagif Abilov10-Nov-02 6:03
professionalVagif Abilov10-Nov-02 6:03 
GeneralRe: creating a bunch of tables from a central table Pin
Like2Byte11-Nov-02 2:34
Like2Byte11-Nov-02 2:34 
GeneralDataSets and XML Pin
Karen8-Nov-02 6:31
Karen8-Nov-02 6:31 
GeneralRe: DataSets and XML Pin
Rickard Andersson2010-Nov-02 20:57
Rickard Andersson2010-Nov-02 20:57 
GeneralRe: access to a mysql-database Pin
Vasudevan Deepak Kumar9-Nov-02 0:19
Vasudevan Deepak Kumar9-Nov-02 0:19 
GeneralSerious and Dreaded OleDB Adapter DB2 Driver Crashing Problem Pin
Vasudevan Deepak Kumar7-Nov-02 20:00
Vasudevan Deepak Kumar7-Nov-02 20:00 
GeneralTrivial SQL (i think) Pin
alex.barylski7-Nov-02 11:33
alex.barylski7-Nov-02 11:33 
GeneralRe: Trivial SQL (i think) Pin
Paul Watson7-Nov-02 11:47
sitebuilderPaul Watson7-Nov-02 11:47 

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.