Hello Guys

I have learned c++ and some of java and I wish if anyone can help in starting the database design and how can connect it to a program , I mean by giving me some useful books and programs in which I will program in(MYSQL and ORACLE ) for program.

:)
Mortinho

Dani AI

Generated

For : with C++ and some Java experience, follow a short practical path: learn relational modeling (ER diagrams, normalization), get comfortable with core SQL, then install a local server to practice connecting from your language of choice. As pointed out, primers help—below are focused, official resources and a compact workflow to get you started.

Useful references:

Practical starter checklist and tips:

  • Install MySQL locally for quick experiments; install Oracle XE if you need Oracle-specific features.
  • Start with a tiny schema (2–4 tables), model relationships, apply 1NF–3NF, then write CRUD queries.
  • For Java use JDBC; for C++ use MySQL Connector/C++ or ODBC/OCI for Oracle. Verify the DB connection first with the command-line client.
  • Common gotchas: driver jars or native libs not on the classpath, mismatched driver/DB versions, wrong connection URL, and user privileges. Check default ports (MySQL 3306, Oracle 1521) and the DB listener.
  • Use XE only for learning (resource limits); never use default accounts in production and keep backups.

Recommended Answers

All 3 Replies

HELP

thanks bru

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.