|
From: <dav...@us...> - 2007-05-30 02:25:04
|
Revision: 1660
http://svn.sourceforge.net/frontierkernel/?rev=1660&view=rev
Author: davidgewirtz
Date: 2007-05-29 19:25:03 -0700 (Tue, 29 May 2007)
Log Message:
-----------
Check-in of the final, working branch build of the Frontier MySQL client for Windows.
Modified Paths:
--------------
Frontier/branches/mysql/Common/source/langmysql.c
Modified: Frontier/branches/mysql/Common/source/langmysql.c
===================================================================
--- Frontier/branches/mysql/Common/source/langmysql.c 2007-05-22 19:13:26 UTC (rev 1659)
+++ Frontier/branches/mysql/Common/source/langmysql.c 2007-05-30 02:25:03 UTC (rev 1660)
@@ -219,7 +219,7 @@
Action: initializes the mySQL library.
Params: none
- Returns: a MySQL object handle or an error
+ Returns: 0 if successful, otherwise an error
Usage: call in a try statement, call before any other MySQL call
MySQL docs: http://dev.mysql.com/doc/refman/5.1/en/mysql-library-init.html
@@ -243,7 +243,7 @@
Action: closes out the MySQL library
Params: none
- Returns: a MySQL object handle or an error
+ Returns: true
Usage: call in a try statement, call after any other MySQL call
MySQL docs: http://dev.mysql.com/doc/refman/5.1/en/mysql-library-end.html
@@ -273,7 +273,8 @@
Returns: a MySQL object handle or an error
Usage: call in a try statement
- MySQL docs: http://dev.mysql.com/doc/refman/5.1/en/mysql-real-connect.html
+ MySQL docs: http://dev.mysql.com/doc/refman/5.1/en/mysql-init.html
+ http://dev.mysql.com/doc/refman/5.1/en/mysql-real-connect.html
If problems are encountered connecting to a Windows-based MySQL server, see:
http://dev.mysql.com/doc/refman/5.1/en/can-not-connect-to-server.html#can-not-connect-to-server-on-windows
@@ -940,8 +941,8 @@
Note:
- Returns the number of rows changed (for) UPDATE), deleted (for DELETE, or inserted
- (for INSERT. For SELECT statements, works like mysql.getSelectedRowCount()
+ Returns the number of rows changed (for UPDATE), deleted (for DELETE), or inserted
+ (for INSERT). For SELECT statements, works like mysql.getSelectedRowCount()
*/
@@ -1335,7 +1336,7 @@
Notes:
- This is unlikely to be used by the Frontier programmer, but is an easy check to be sure
+ This is unlikely to be used by the Frontier scripter, but is an easy check to be sure
the right MySQL client is being linked into the Frontier kernel.
*/
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|