Thread: Database

  1. #1
    Unregistered
    Guest

    Database

    Can you please please please help me,

    I am looking for a C++ Database that will let me add, delete and edit people's
    names, addresses, telephone numbers, fax number and e-mail address.

    Can you help as soon as possible please?

    Steve.

  2. #2
    Registered User
    Join Date
    May 2002
    Posts
    317
    Well, I'm looking for the cure for illeteracy, maybe you can help by learning how to read:
    1. Don't expect someone to write your entire program.
    2. Check to see if your question has been answered (use the search feature and read the FAQ!)
    3. Use a descriptive title (not just "C" or "C++"; make it specific).
    4. You don't need to write more than one H E L or P in help, and it definitely doesn't need to be capitalized.
    5. Let dead posts lie; don't bump old messages without a reason or they will likely be deleted.
    6. Post your code. If you don't have any, ask where to start; do not for the program to be written for you.
    7. Don't type anything in all CAPS.
    8. Don't ask for a personal email - the board will send an email when a post is replied to if you desire. Use that and check back when you get a reply; the board moves messages up. As well, it will actually send the text of the response to you.
    9. Post once: don't keep pressing post. Duplicates will be deleted.
    10. Do not cross post; almost everyone reads most of the important boards.
    11. Be polite, especially if you want someone to help you. Just because you are giving help doesn't mean you have the right to be rude, however.
    12. Disparaging remarks without provocation and unsolicited advertisements will be immediately removed. Don't waste your time, and don't waste my time. By the way, you can't make $6000 from $6 dollars.

  3. #3
    Registered User
    Join Date
    Apr 2002
    Posts
    156
    I know this might not help at all, but I felt like posting it anyways.

    #include <iostream>
    #include <fstream.h>
    #include <conio.h>
    #include <string>

    int main(int argv, char *argc[])
    {
    string name;
    unsigned short int age;
    cout << "Input your name: ";
    cin >> name;
    cout << "Input your age: ";
    cin >> age;


    ofstream x("Database");
    x << "Name: " << name;
    x << "Age: " << age;
    x.close();
    Compiler: MingW(IDE: Bloodshed Dev-C++ 4.01)
    Web Site: Zoo Crew
    Forums: Zoo Boards
    E-mail: [email protected]

    "Do you wanna go to jail or do you wanna go home?!?!" - Alonzo(Training Day)

  4. #4
    Registered User blight2c's Avatar
    Join Date
    Mar 2002
    Posts
    266
    gb, why do you refuse to use code tags . . . are you looking for a cause or something?

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. literature database: help with planning
    By officedog in forum C++ Programming
    Replies: 1
    Last Post: 01-23-2009, 12:34 PM
  2. Creating a database
    By Shamino in forum Game Programming
    Replies: 19
    Last Post: 06-10-2007, 01:09 PM
  3. Replies: 10
    Last Post: 05-18-2006, 11:23 PM
  4. Developing database management software
    By jdm in forum C++ Programming
    Replies: 4
    Last Post: 06-15-2004, 04:06 PM
  5. Making a Simple Database System
    By Speedy5 in forum C++ Programming
    Replies: 1
    Last Post: 03-14-2003, 10:17 PM