Skip to content

Files

Failed to load latest commit information.

Latest commit

 Cannot retrieve latest commit at this time.

History

History

bindings

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

This package provides minimal GopherJS bindings around SQL.js.

The SQL.js API is pretty simple to begin with, so the direct mapping to Go methods is also fairly straight forward.

Database object methods:

SQL.js go-sql.js
constructor New(), OpenReader()
exec Exec()
each --
prepare Prepare(), PrepareParams()
export Export()
close Close()
getRowsModified GetRowsModified()
create_function --

Statement object methods:

SQL.js go-sql.js
bind Bind(), BindNamed()
step Step()
get Get(), GetParams(), GetNamedParams()
getColumnNames GetColumnNames()
getAsObject GetAsMap(), GetAsMapParams(), GetAsMapNamedParams()
run Run()
reset Reset()
freemem Freemem()
free Free()