summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/QSqlQueryInterface.java
blob: b28ed2efd069a9fc85d76b1b8c64e5484a39a2ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//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();
}