You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.0 KiB
Java
39 lines
1.0 KiB
Java
//Auto-generated by kalyptus. DO NOT EDIT.
|
|
package org.kde.qt;
|
|
|
|
|
|
public interface QSqlQueryInterface {
|
|
boolean isValid();
|
|
boolean isActive();
|
|
boolean isNull(int field);
|
|
int at();
|
|
String lastQuery();
|
|
int numRowsAffected();
|
|
QSqlError lastError();
|
|
boolean isSelect();
|
|
int size();
|
|
QSqlDriver driver();
|
|
QSqlResult result();
|
|
boolean isForwardOnly();
|
|
void setForwardOnly(boolean forward);
|
|
boolean exec(String query);
|
|
QVariant value(int i);
|
|
boolean seek(int i, boolean relative);
|
|
boolean seek(int i);
|
|
boolean next();
|
|
boolean prev();
|
|
boolean first();
|
|
boolean last();
|
|
boolean exec();
|
|
boolean prepare(String query);
|
|
void bindValue(String placeholder, QVariant val);
|
|
void bindValue(int pos, QVariant val);
|
|
void addBindValue(QVariant val);
|
|
void bindValue(String placeholder, QVariant val, int type);
|
|
void bindValue(int pos, QVariant val, int type);
|
|
void addBindValue(QVariant val, int type);
|
|
QVariant boundValue(String placeholder);
|
|
QVariant boundValue(int pos);
|
|
String executedQuery();
|
|
}
|