[]Struct jni_android_sys::android::database::sqlite::SQLiteProgram

#[repr(transparent)]
pub struct SQLiteProgram(_);

public class SQLiteProgram

Required feature: "android-database-sqlite-SQLiteProgram"

Methods

impl SQLiteProgram

pub fn getUniqueId<'env>(&'env self) -> Result<i32, Local<'env, Throwable>>[src]

Deprecated

pub fn bindNull<'env>(
    &'env self,
    arg0: i32
) -> Result<(), Local<'env, Throwable>>
[src]

pub fn bindLong<'env>(
    &'env self,
    arg0: i32,
    arg1: i64
) -> Result<(), Local<'env, Throwable>>
[src]

pub fn bindDouble<'env>(
    &'env self,
    arg0: i32,
    arg1: f64
) -> Result<(), Local<'env, Throwable>>
[src]

pub fn bindString<'env>(
    &'env self,
    arg0: i32,
    arg1: impl Into<Option<&'env String>>
) -> Result<(), Local<'env, Throwable>>
[src]

bindString

Required features: "java-lang-String"

pub fn bindBlob<'env>(
    &'env self,
    arg0: i32,
    arg1: impl Into<Option<&'env ByteArray>>
) -> Result<(), Local<'env, Throwable>>
[src]

pub fn clearBindings<'env>(&'env self) -> Result<(), Local<'env, Throwable>>[src]

pub fn bindAllArgsAsStrings<'env>(
    &'env self,
    arg0: impl Into<Option<&'env ObjectArray<String, Throwable>>>
) -> Result<(), Local<'env, Throwable>>
[src]

bindAllArgsAsStrings

Required features: "java-lang-String"

Methods from Deref<Target = SQLiteClosable>

pub fn acquireReference<'env>(&'env self) -> Result<(), Local<'env, Throwable>>[src]

pub fn releaseReference<'env>(&'env self) -> Result<(), Local<'env, Throwable>>[src]

pub fn releaseReferenceFromContainer<'env>(
    &'env self
) -> Result<(), Local<'env, Throwable>>
[src]

Deprecated

pub fn close<'env>(&'env self) -> Result<(), Local<'env, Throwable>>[src]

Trait Implementations

impl AsJValue for SQLiteProgram

impl AsValidJObjectAndEnv for SQLiteProgram

impl Deref for SQLiteProgram

type Target = SQLiteClosable

The resulting type after dereferencing.

impl JniType for SQLiteProgram

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.