File: index.html

package info (click to toggle)
mysql%2B%2B 3.2.2%2Bpristine-2
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 15,724 kB
  • ctags: 10,567
  • sloc: cpp: 35,668; sh: 3,683; makefile: 846; perl: 786
file content (50 lines) | stat: -rwxr-xr-x 4,540 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
	<title>MySQL++ Reference Manual</title>
	<meta http-equiv="Content-type" content="text/html;charset=iso-8859-1">
	<link href="doxygen.css" rel="stylesheet" type="text/css">
</head>
<body>
<!-- Generated by Doxygen 1.8.5 -->
  <div id="navrow1" class="tabs">
    <ul class="tablist">
      <li class="current"><a href="index.html"><span>Main&#160;Page</span></a></li>
      <li><a href="namespaces.html"><span>Namespaces</span></a></li>
      <li><a href="annotated.html"><span>Classes</span></a></li>
      <li><a href="files.html"><span>Files</span></a></li>
    </ul>
  </div>
</div><!-- top -->
<div class="header">
  <div class="headertitle">
<div class="title">MySQL++ Reference Manual </div>  </div>
</div><!--header-->
<div class="contents">
<div class="textblock"><h1><a class="anchor" id="getting_started"></a>
Getting Started</h1>
<p>The best place to get started is the <a href="../userman/index.html">user manual</a>. It provides a guide to the example programs and more.</p>
<h1><a class="anchor" id="classes"></a>
Major Classes</h1>
<p>In MySQL++, the main user-facing classes are <a class="el" href="classmysqlpp_1_1Connection.html" title="Manages the connection to the database server. ">mysqlpp::Connection</a>, <a class="el" href="classmysqlpp_1_1Query.html" title="A class for building and executing SQL queries. ">mysqlpp::Query</a>, <a class="el" href="classmysqlpp_1_1Row.html" title="Manages rows from a result set. ">mysqlpp::Row</a>, <a class="el" href="classmysqlpp_1_1StoreQueryResult.html" title="StoreQueryResult set type for &quot;store&quot; queries. ">mysqlpp::StoreQueryResult</a>, and <a class="el" href="classmysqlpp_1_1UseQueryResult.html" title="StoreQueryResult set type for &quot;use&quot; queries. ">mysqlpp::UseQueryResult</a>.</p>
<p>In addition, MySQL++ has a mechanism called Specialized SQL Structures (SSQLS), which allow you to create C++ structures that parallel the definition of the tables in your database schema. These let you manipulate the data in your database using native C++ data structures. Programs using this feature often include very little SQL code, because MySQL++ can generate most of what you need automatically when using SSQLSes. There is a whole chapter in the user manual on how to use this feature of the library, plus a section in the user manual's tutorial chapter to introduce it. It's possible to use MySQL++ effectively without using SSQLS, but it sure makes some things a lot easier.</p>
<h1><a class="anchor" id="files"></a>
Major Files</h1>
<p>The only two header files your program ever needs to include are mysql++.h, and optionally custom.h. (The latter implements the SSQLS mechanism.) All of the other files are used within the library only.</p>
<h1><a class="anchor" id="user_questions"></a>
If You Have Questions...</h1>
<p>If you want to email someone to ask questions about this library, we greatly prefer that you send mail to the MySQL++ mailing list, which you can subscribe to here: <a href="http://lists.mysql.com/plusplus">http://lists.mysql.com/plusplus</a></p>
<p>That mailing list is archived, so if you have questions, do a search to see if the question has been asked before.</p>
<p>You may find people's individual email addresses in various files within the MySQL++ distribution. Please do not send mail to them unless you are sending something that is inherently personal. Questions that are about MySQL++ usage may well be ignored if you send them to our personal email accounts. Those of us still active in MySQL++ development monitor the mailing list, so you aren't getting any extra "coverage" by sending messages to those addresses in addition to the mailing list.</p>
<h1><a class="anchor" id="licensing"></a>
Licensing</h1>
<p>MySQL++ is licensed under the GNU Lesser General Public License, which you should have received with the distribution package in a file called "LGPL" or "LICENSE". You can also view it here: <a href="http://www.gnu.org/licenses/lgpl.html">http://www.gnu.org/licenses/lgpl.html</a> or receive a copy by writing to Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. </p>
</div></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Wed Mar 18 2015 18:55:03 for MySQL++ by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.5
</small></address>
</body>
</html>