2
0

SQLite3Result.hx 378 B

1234567891011121314
  1. package php.db;
  2. import php.*;
  3. import haxe.extern.EitherType;
  4. @:native('SQLite3Result')
  5. extern class SQLite3Result {
  6. function columnName(column_number:Int) : String;
  7. function columnType(column_number:Int) : Int;
  8. function fetchArray(?mode:Int) : EitherType<Bool,NativeAssocArray<String>>;
  9. function finalize() : Bool;
  10. function numColumns() : Int;
  11. function reset() : Bool;
  12. }