SQLite3Stmt.hx 470 B

12345678910111213141516
  1. package php.db;
  2. import php.*;
  3. import haxe.extern.EitherType;
  4. @:native('SQLite3Stmt')
  5. extern class SQLite3Stmt {
  6. function bindParam(sql_param:EitherType<String,Int>, param:Ref<Dynamic>, ?type:Int) : Bool;
  7. function bindValue(sql_param:EitherType<String,Int>, value:Dynamic, ?type:Int) : Bool;
  8. function clear() : Bool;
  9. function close() : Bool;
  10. function execute() : SQLite3Result;
  11. function paramCount() : Int;
  12. function readOnly() : Bool;
  13. function reset() : Bool;
  14. }