summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/QSql.java
blob: c2f1b12880c0dfe1be430f2df3f1282bb39e24da (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
39
40
41
42
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;

import org.kde.qt.Qt;

public class QSql implements QtSupport {
	private long _qt;
	private boolean _allocatedInJavaWorld = true;
	protected QSql(Class dummy){}

	public static final int None = -1;
	public static final int Insert = 0;
	public static final int Update = 1;
	public static final int Delete = 2;

	public static final int BeforeFirst = -1;
	public static final int AfterLast = -2;

	public static final int Cancel = -1;
	public static final int No = 0;
	public static final int Yes = 1;

	public static final int In = 1;
	public static final int Out = 2;
	public static final int InOut = 3;

	public static final int Tables = 0x01;
	public static final int SystemTables = 0x02;
	public static final int Views = 0x04;
	public static final int AllTables = 0xff;

	public QSql() {
		newQSql();
	}
	private native void newQSql();
	/** Deletes the wrapped C++ instance */
	protected native void finalize() throws InternalError;
	/** Delete the wrapped C++ instance ahead of finalize() */
	public native void dispose();
	/** Has the wrapped C++ instance been deleted? */
	public native boolean isDisposed();
}