Commit f6df9a69 authored by gwenn's avatar gwenn

Add missing stuff in README.

parent b0a73145
...@@ -4,6 +4,7 @@ Yet another SQLite binding based on: ...@@ -4,6 +4,7 @@ Yet another SQLite binding based on:
Open supports flags. Open supports flags.
Conn#Exec handles multiple statements (separated by semicolons) properly. Conn#Exec handles multiple statements (separated by semicolons) properly.
Conn#Prepare can optionnaly #Bind as well.
Stmt#Exec is renamed in Stmt#Bind and a new Stmt#Exec method is introduced to #Bind and #Step. Stmt#Exec is renamed in Stmt#Bind and a new Stmt#Exec method is introduced to #Bind and #Step.
Stmt#Bind uses native sqlite3_bind_x methods and failed if unsupported type. Stmt#Bind uses native sqlite3_bind_x methods and failed if unsupported type.
Stmt#Next returns a (bool, os.Error) couple like Reader#Read. Stmt#Next returns a (bool, os.Error) couple like Reader#Read.
...@@ -17,6 +18,7 @@ Conn#Changes/TotalChanges ...@@ -17,6 +18,7 @@ Conn#Changes/TotalChanges
Conn#LastInsertRowid Conn#LastInsertRowid
Conn#Interrupt Conn#Interrupt
Conn#Begin/BeginTransaction(type)/Commit/Rollback Conn#Begin/BeginTransaction(type)/Commit/Rollback
Conn#GetAutocommit
Stmt#ExecUpdate Stmt#ExecUpdate
Stmt#BindParameterCount/BindParameterIndex Stmt#BindParameterCount/BindParameterIndex
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment