CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5
  1. #1
    Join Date
    Mar 2011
    Location
    Greece
    Posts
    26

    Questions Create Databases and Applications

    Hi
    I am working C++ Builder X2 and i want to ask your opinion wich is the best way to create simple applications

    For example is better to use Access or Sql Server and also wich is the best components to connect databases with application.

  2. #2
    VictorN's Avatar
    VictorN is offline Super Moderator Power Poster
    Join Date
    Jan 2003
    Location
    Hanover Germany
    Posts
    20,396

    Re: Questions Create Databases and Applications

    Quote Originally Posted by Leite333 View Post
    For example is better to use Access or Sql Server
    It depends...
    Access is a desktop DBMS while SQL Server is a server one

    Quote Originally Posted by Leite333 View Post
    ... also wich is the best components to connect databases with application.
    I don't know which ones are used with C++ Builder X2.
    In Microsoft VC++ and VB there is ADO.
    There are MFC CDatabase and CRecordset classes.
    There are Windows API to work with databases: http://msdn.microsoft.com/en-us/libr...(v=vs.85).aspx

    And there is not a thing as "the best components to connect databases". Everyone chooses the way to the most suitable and convenient to him/her...
    Victor Nijegorodov

  3. #3
    Join Date
    Mar 2011
    Location
    Greece
    Posts
    26

    Re: Questions Create Databases and Applications

    Ok Thank you. Do you know any good book to suggest me and any site with c++ builder code applications to make some practice;

  4. #4
    VictorN's Avatar
    VictorN is offline Super Moderator Power Poster
    Join Date
    Jan 2003
    Location
    Hanover Germany
    Posts
    20,396

    Re: Questions Create Databases and Applications

    No. I never used c++ builder.
    Victor Nijegorodov

  5. #5
    2kaud's Avatar
    2kaud is offline Super Moderator Power Poster
    Join Date
    Dec 2012
    Location
    England
    Posts
    7,824

    Re: Questions Create Databases and Applications

    Just do a google search for 'c++ builder examples'

    https://www.google.co.uk/search?q=c%...OsPBhAfH6YDoBg
    All advice is offered in good faith only. All my code is tested (unless stated explicitly otherwise) with the latest version of Microsoft Visual Studio (using the supported features of the latest standard) and is offered as examples only - not as production quality. I cannot offer advice regarding any other c/c++ compiler/IDE or incompatibilities with VS. You are ultimately responsible for the effects of your programs and the integrity of the machines they run on. Anything I post, code snippets, advice, etc is licensed as Public Domain https://creativecommons.org/publicdomain/zero/1.0/ and can be used without reference or acknowledgement. Also note that I only provide advice and guidance via the forums - and not via private messages!

    C++23 Compiler: Microsoft VS2022 (17.6.5)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured