~ubuntu-branches/ubuntu/precise/mysql-5.1/precise

« back to all changes in this revision

Viewing changes to man/msql2mysql.1

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Tretkowski
  • Date: 2010-03-17 14:56:02 UTC
  • Revision ID: james.westby@ubuntu.com-20100317145602-x7e30l1b2sb5s6w6
Tags: upstream-5.1.45
ImportĀ upstreamĀ versionĀ 5.1.45

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
'\" t
 
2
.\"     Title: \fBmsql2mysql\fR
 
3
.\"    Author: [FIXME: author] [see http://docbook.sf.net/el/author]
 
4
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
 
5
.\"      Date: 03/01/2010
 
6
.\"    Manual: MySQL Database System
 
7
.\"    Source: MySQL 5.1
 
8
.\"  Language: English
 
9
.\"
 
10
.TH "\FBMSQL2MYSQL\FR" "1" "03/01/2010" "MySQL 5\&.1" "MySQL Database System"
 
11
.\" -----------------------------------------------------------------
 
12
.\" * set default formatting
 
13
.\" -----------------------------------------------------------------
 
14
.\" disable hyphenation
 
15
.nh
 
16
.\" disable justification (adjust text to left margin only)
 
17
.ad l
 
18
.\" -----------------------------------------------------------------
 
19
.\" * MAIN CONTENT STARTS HERE *
 
20
.\" -----------------------------------------------------------------
 
21
.\" msql2mysql
 
22
.SH "NAME"
 
23
msql2mysql \- convert mSQL programs for use with MySQL
 
24
.SH "SYNOPSIS"
 
25
.HP \w'\fBmsql2mysql\fR\fB\fIC\-source\-file\fR\fR\fB\ \&.\&.\&.\fR\ 'u
 
26
\fBmsql2mysql\fR\fB\fIC\-source\-file\fR\fR\fB \&.\&.\&.\fR
 
27
.SH "DESCRIPTION"
 
28
.PP
 
29
Initially, the MySQL C API was developed to be very similar to that for the mSQL database system\&. Because of this, mSQL programs often can be converted relatively easily for use with MySQL by changing the names of the C API functions\&.
 
30
.PP
 
31
The
 
32
\fBmsql2mysql\fR
 
33
utility performs the conversion of mSQL C API function calls to their MySQL equivalents\&.
 
34
\fBmsql2mysql\fR
 
35
converts the input file in place, so make a copy of the original before converting it\&. For example, use
 
36
\fBmsql2mysql\fR
 
37
like this:
 
38
.sp
 
39
.if n \{\
 
40
.RS 4
 
41
.\}
 
42
.nf
 
43
shell> \fBcp client\-prog\&.c client\-prog\&.c\&.orig\fR
 
44
shell> \fBmsql2mysql client\-prog\&.c\fR
 
45
client\-prog\&.c converted
 
46
.fi
 
47
.if n \{\
 
48
.RE
 
49
.\}
 
50
.PP
 
51
Then examine
 
52
client\-prog\&.c
 
53
and make any post\-conversion revisions that may be necessary\&.
 
54
.PP
 
55
\fBmsql2mysql\fR
 
56
uses the
 
57
\fBreplace\fR
 
58
utility to make the function name substitutions\&. See
 
59
\fBreplace\fR(1)\&.
 
60
.SH "COPYRIGHT"
 
61
.br
 
62
.PP
 
63
Copyright 2007-2008 MySQL AB, 2008-2010 Sun Microsystems, Inc.
 
64
.PP
 
65
This documentation is free software; you can redistribute it and/or modify it only under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License.
 
66
.PP
 
67
This documentation is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
 
68
.PP
 
69
You should have received a copy of the GNU General Public License along with the program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see http://www.gnu.org/licenses/.
 
70
.sp
 
71
.SH "SEE ALSO"
 
72
For more information, please refer to the MySQL Reference Manual,
 
73
which may already be installed locally and which is also available
 
74
online at http://dev.mysql.com/doc/.
 
75
.SH AUTHOR
 
76
Sun Microsystems, Inc. (http://www.mysql.com/).