akgunkel

 

LinuxProgramming

Page history last edited by Anonymous 2 yrs ago

Linux Programming Notes

 

 

Version Management

 

CVS

 

Subversion

 

 

APIs & Libraries

 

 

Networking

 

Sockets, Etc...

 

 

 

 

Database

 

Name library .h names and links to documentation.

 

MySQL

 

Application programs should use this general outline for interacting with MySQL:

 

1) Initialize the MySQL library by calling mysql_library_init(). This function exists in both the mysqlclient C client library and the mysqld embedded server library, so it is used whether you build a regular client program by linking with the -libmysqlclient flag, or an embedded server application by linking with the -libmysqld flag.

 

2) Initialize a connection handler by calling mysql_init() and connect to the server by calling mysql_real_connect().

 

3) Issue SQL statements and process their results.

 

4) Close the connection to the MySQL server by calling mysql_close().

 

5) End use of the MySQL library by calling mysql_library_end().

 

http://www.ilovejackdaniels.com/mysql_cheat_sheet.pdf

http://dev.mysql.com/doc/refman/5.0/en/c.html

 

 

http://en.wikipedia.org/wiki/Comparison_of_relational_database_management_systems

http://troels.arvin.dk/db/rdbms/

http://www.geocities.com/mailsoftware42/db/

Comments (0)

You don't have permission to comment on this page.