C/C++

Linux or UNIX - Connect mysql in C

| | | |

MySQL database does support C program API just like PHP or Perl API.

The C API code is distributed with MySQL. It is included in the mysqlclient library and allows C programs to access a database.

Many of the clients in the MySQL source distribution are written in C. If you are looking for examples that demonstrate how to use the C API, take a look at these clients. You can find these in the clients directory in the MySQL source distribution.

This tutorial provides a sample MySQL C program and step by step compilation instructions to kick start MySQL programming via C API.

Howto optimize C++ code

| | |

These optimizations are fairly easy to apply to existing code and in some cases can result in big speedups. Remember the all-important maxim though, the fastest code is code that isn't called.

C++ Function Pointer Tutorials

| | |

A neat list of tutorials solely on C/C++ function pointers.

FAQ on C++ Templates

| |

A good faq on templates in C++. Very precise and succint.

Beginning Mac Development

| | | |

If you have ever been interested in writing your own applications for Mac OS X, read Justin Williams' getting started guide for new developers. He will outline a brief history of Mac development, lay out what options you have, and then set you on the right path to developer enlightenment.

Design Patterns

| | |

Good website that has a repository of all 23 fundamental design patterns. This also has UML diagrams for each pattern and sample code. Must have bookmark

Syndicate content