Skip to content

Commit 6d99bc3

Browse files
author
Philio
committed
updated readme for RC
1 parent e6b1215 commit 6d99bc3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ Result methods
212212

213213
**Result.FetchFields() []*Field** - Get all fields in the result set.
214214

215-
**Result.RowCount() uint64** - Get the number of rows in the result set, works for stored results only, used result always return 0.
215+
**Result.RowCount() uint64** - Get the number of rows in the result set, **works for stored results only**, used result always return 0.
216216

217217
**Result.FetchRow() Row** - Get the next row in the result set.
218218

@@ -252,7 +252,7 @@ Statement methods
252252

253253
**Statement.BindResult(params ...interface{}) (err os.Error)** - Bind the result, parameters passed to this functions should be pointers to variables which will be populated with the data from the fetched row. If a column value is not needed a nil can be used. Parameters should be of a "similar" type to the actual column value in the MySQL table, e.g. for an INT field, the parameter can be any integer type or a string and the relevant conversion is performed. Using integer sizes smaller than the size in the table is not recommended. The number of parameters bound can be equal or less than the number of fields in the table, providing more parameters than actual columns will result in a crash.
254254

255-
**Statement.RowCount() uint64** - Get the number of rows in the result set, works for stored results only, otherwise returns 0.
255+
**Statement.RowCount() uint64** - Get the number of rows in the result set, **works for stored results only**, otherwise returns 0.
256256

257257
**Statement.Fetch() (eof bool, err os.Error)** - Fetch the next row in the result, values are populated into parameters bound using BindResult.
258258

0 commit comments

Comments
 (0)