- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在类DataBaseSqlite
内,我在方法onCreate
内使用DATABASE_CREATE_CLIENT
来创建数据库。
package DataBaseSqlite;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.util.Log;
/**
* Created by jur_1 on 02-Apr-17.
*/
public class MySQLiteHelper extends SQLiteOpenHelper
{
//CLIENT VARIABLES
public static final String TABLE_CLIENT = "clients";
public static final String CLIENT_ID = "rowid ";
public static final String CLIENT_NAME = "name";
public static final String CLIENT_CONTACT_ID = "contactId";
private static final String DATABASE_NAME = "JurBankTransactions.db";
private static final int DATABASE_VERSION = 5;
//CLIENT TABLE
private static final String DATABASE_CREATE_CLIENT = "create table " + TABLE_CLIENT + "( " + CLIENT_ID + " INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "
+ CLIENT_NAME + " text not null, " + CLIENT_CONTACT_ID + " text not null)";
private static final String DATABASE_CREATE_TRANSACTIONS = "create table transactions( _id integer key auto increment, clientID integer, typeID integer, debt integer, quantity integer, date text)";
private static final String DATABASE_CREATE_TYPE = "create table types( _id integer key auto increment, name text not null)";
public MySQLiteHelper(Context context) {
super(context, DATABASE_NAME, null, DATABASE_VERSION);
}
@Override
public void onCreate(SQLiteDatabase db)
{
db.execSQL(DATABASE_CREATE_CLIENT);
db.execSQL(DATABASE_CREATE_TRANSACTIONS);
db.execSQL(DATABASE_CREATE_TYPE);
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion)
{
Log.w(MySQLiteHelper.class.getName(),
"Upgrading database from version " + oldVersion + " to "
+ newVersion + ", which will destroy all old data");
db.execSQL("DROP TABLE IF EXISTS clients");
db.execSQL("DROP TABLE IF EXISTS transactions");
db.execSQL("DROP TABLE IF EXISTS types");
onCreate(db);
}
}
之后,在 MainActivity 中,我调用 Intent 来打开“联系人”并检索有关用户选择的联系人的数据。然后我调用位于类 CliendDataSource 内的方法 createClient,在该类中调用 cursorToClient,但我无法检索 contactId 值。
package CustomListView;
/**
* Created by jur_1 on 10-May-17.
*/
import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.SQLException;
import android.database.sqlite.SQLiteDatabase;
import android.util.Log;
import java.util.ArrayList;
import java.util.List;
import DataBaseSqlite.Client;
import DataBaseSqlite.MySQLiteHelper;
public class ClientDataSource
{
private SQLiteDatabase database;
private MySQLiteHelper dbHelper;
private String[] allColumns = {MySQLiteHelper.CLIENT_ID, MySQLiteHelper.CLIENT_NAME};
public ClientDataSource(Context context)
{
dbHelper = new MySQLiteHelper(context);
}
public void open() throws SQLException
{
database = dbHelper.getWritableDatabase();
}
public void close()
{
dbHelper.close();
}
public Client createClient(String name, String contactId)
{
ContentValues values = new ContentValues();
values.put(MySQLiteHelper.CLIENT_NAME, name);
values.put(MySQLiteHelper.CLIENT_CONTACT_ID, contactId);
Log.d("CREATE_CLIENT", "values contact id: " + contactId);
Log.d("CREATE_CLIENT", "values length: " + values.size());
long insertId = database.insert(MySQLiteHelper.TABLE_CLIENT, null,
values);
System.out.println("new id: " + insertId);
Cursor cursor = database.query(MySQLiteHelper.TABLE_CLIENT,
allColumns, MySQLiteHelper.CLIENT_ID + " = " + insertId, null,
null, null, null);
cursor.moveToFirst();
Client newClient = cursorToClient(cursor);
cursor.close();
return newClient;
}
public void deleteClient(Client client)
{
long id = client.getId();
System.out.println("Client deleted with id: " + id);
database.delete(MySQLiteHelper.TABLE_CLIENT, MySQLiteHelper.CLIENT_ID
+ " = " + id, null);
}
public List<Client> getAllClients()
{
List<Client> clients = new ArrayList<Client>();
Cursor cursor = database.query(MySQLiteHelper.TABLE_CLIENT,
allColumns, null, null, null, null, null);
cursor.moveToFirst();
while (!cursor.isAfterLast())
{
Client client = cursorToClient(cursor);
clients.add(client);
cursor.moveToNext();
}
// make sure to close the cursor
cursor.close();
return clients;
}
private Client cursorToClient(Cursor cursor)
{
Log.d("cursorToClient", "cursor num of columsn: " + cursor.getColumnCount());
Client client = new Client();
client.setId(cursor.getLong(0));
Log.d("cursorToClient", "column id: " + cursor.getLong(0));
client.setName(cursor.getString(1));
Log.d("cursorToClient", "cursor name: " + cursor.getString(1));
String[] columnNames = cursor.getColumnNames();
for(String columnName : columnNames)
{
System.out.println("Column: " + columnName);
}
Log.d("cursorToClient", "column name 2: " + cursor.getColumnName(2));
client.setContactsId(cursor.getString(2));
return client;
}
}
日志输出为:
19:32.067 8647-8647/com.jurbank.jurbank.jurbank D/cursorToClient: cursor num of columsn: 2
05-12 22:19:32.068 8647-8647/com.jurbank.jurbank.jurbank D/cursorToClient: column id: 1
05-12 22:19:32.068 8647-8647/com.jurbank.jurbank.jurbank D/cursorToClient: cursor name: Alen Ban
05-12 22:19:32.068 8647-8647/com.jurbank.jurbank.jurbank I/System.out: Column: rowid
05-12 22:19:32.068 8647-8647/com.jurbank.jurbank.jurbank I/System.out: Column: name
错误:
05-12 22:19:32.069 8647-8647/com.jurbank.jurbank.jurbank E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.jurbank.jurbank.jurbank, PID: 8647
java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=1, result=-1, data=Intent { dat=content://com.android.contacts/contacts/lookup/549i30872f420c7a3b2e.1115i91.1419r1625-293F31432B2943/95 flg=0x1 }} to activity {com.jurbank.jurbank.jurbank/com.jurbank.jurbank.jurbank.MainActivityClients}: java.lang.ArrayIndexOutOfBoundsException: length=2; index=2
at android.app.ActivityThread.deliverResults(ActivityThread.java:3699)
最佳答案
并不是说我确定问题所在,但根据您的代码,以下内容是有效的。我确实遇到了一个问题(根据 Ferdous 帖子中的评论),“rowid”有空间。然而,这是使用传递给 getColumnIndex()
的变量,即它返回的空间为 -1(未找到)。
无论如何,这里有一些适合我的代码,它们很大程度上基于您的代码(减去 Client 类的内容):-
DBHelper(带有用于测试的 addClient
和 getAllClients
):-
public class DBHelperClients extends SQLiteOpenHelper {
//CLIENT VARIABLES
public static final String TABLE_CLIENT = "clients";
public static final String CLIENT_ID = "rowid";
public static final String CLIENT_NAME = "name";
public static final String CLIENT_CONTACT_ID = "contactId";
private static final String DATABASE_NAME = "JurBankTransactions.db";
private static final int DATABASE_VERSION = 5;
//CLIENT TABLE
private static final String DATABASE_CREATE_CLIENT = "create table " + TABLE_CLIENT +
"( " + CLIENT_ID + " INTEGER PRIMARY KEY, "
+ CLIENT_NAME + " text not null, "
+ CLIENT_CONTACT_ID + " text not null)";
public DBHelperClients(Context context) {
super(context, DATABASE_NAME, null, DATABASE_VERSION);
}
@Override
public void onCreate(SQLiteDatabase db) {
db.execSQL(DATABASE_CREATE_CLIENT);
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldversion, int newversion) {
}
public long addClient(String name, String contact) {
SQLiteDatabase db = this.getWritableDatabase();
ContentValues cv = new ContentValues();
cv.put(CLIENT_NAME,name);
cv.put(CLIENT_CONTACT_ID,contact);
return db.insert(TABLE_CLIENT,null,cv);
}
public Cursor getAllClients() {
SQLiteDatabase db = this.getReadableDatabase();
return db.query(TABLE_CLIENT,null,null,null,null,null,null);
}
}
调用 Activity 如下:-
public class MainActivity extends AppCompatActivity {
//DBHelper db;
DBHelperClients db;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
db = new DBHelperClients(this);
db.addClient("Fred","email");
db.addClient("Bert","snailmail");
db.addClient("Harry","smoke signals");
Cursor myclients = db.getAllClients();
while (myclients.moveToNext()) {
Log.d("MYCLIENT","Client name=" +
myclients.getString(myclients.getColumnIndex(DBHelperClients.CLIENT_NAME)) +
"\tClient Contact=" +
myclients.getString(myclients.getColumnIndex(DBHelperClients.CLIENT_CONTACT_ID)) +
"\tID=" + Long.toString(myclients.getLong(myclients.getColumnIndex(DBHelperClients.CLIENT_ID)))
);
}
}
}
日志(第二次运行后,因此重复数据):-
05-13 18:49:16.058 7260-7260/mjt.testvcsuse D/MYCLIENT: Client name=Fred Client Contact=email ID=1
05-13 18:49:16.058 7260-7260/mjt.testvcsuse D/MYCLIENT: Client name=Bert Client Contact=snailmail ID=2
05-13 18:49:16.058 7260-7260/mjt.testvcsuse D/MYCLIENT: Client name=Harry Client Contact=smoke signals ID=3
05-13 18:49:16.058 7260-7260/mjt.testvcsuse D/MYCLIENT: Client name=Fred Client Contact=email ID=4
05-13 18:49:16.058 7260-7260/mjt.testvcsuse D/MYCLIENT: Client name=Bert Client Contact=snailmail ID=5
05-13 18:49:16.058 7260-7260/mjt.testvcsuse D/MYCLIENT: Client name=Harry Client Contact=smoke signals ID=6
细微的差异,本不应该解决任何问题
我使用 while(cursor.moveToNext()) {}
循环游标,而不是在从游标获取数据时使用列的特定偏移量。我使用了更灵活的 cursor.getColumnIndex(name of the column)
。
也许尝试使用上面的方法,看看它是否有效,然后根据您的需要进行调整。
关于java - 插入后无法从 SQLite 中找到列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43946004/
我正在开发一个 SQLite 数据库。数据库已经填满了,但我想重构它。这是我需要做的一个示例: 我目前有一张 table : CREATE TABLE Cars (ID INTEGER PRIMARY
我正在使用 Mono、SQLite、Dapper 和 Dapper 扩展。我可以从数据库中读取数据,但插入不起作用。我正在使用 sqlite 的 Mono 驱动程序。 错误并不能提供太多信息,至少对我
我有一个使用 SQLite 的 Windows Phone 8 应用程序。该应用程序具有许多数据库功能,并包含一个 sqlite 数据库文件,在运行该应用程序时,该文件将被复制到本地文件夹并进行访问。
为 sqlite 创建索引时有排序顺序。 https://sqlite.org/lang_createindex.html Each column name or expression can be
顾名思义,我怀疑如果有一些引用被删除的表会发生什么,例如表的某些字段的索引。 SQLite是否会自动处理?在执行drop命令之前,数据库所有者是否应注意任何实例? 最佳答案 我认为不需要家政服务。 S
我想知道是否有可能将从计数中获得的整数转换为REAL 类似于以下内容(尽管这不起作用) SELECT CAST (COUNT (ColumnA) AS Count) AS REAL) FROM Tab
我无法在SQLite数据库上执行一些更新。我正在Windows上使用SQLite 3 Shell。 我正在运行以下命令: update resovled_chrom_counts set genus
我知道SQLite中的触发器顺序是不确定的(您不能确定将首先执行哪个触发器),但是表约束和触发器之间的关系又如何呢? 我的意思是,假设我在一个列中有一个UNIQUE(或CHECK)约束,并且在该表上有
我的 CustomTags 表可能有一系列“临时”记录,其中 Tag_ID 为 0,并且 Tag_Number 将有一些五位数的值。 定期,我想清理我的 Sqlite 表以删除这些临时值。 例如,我可
我有A,B,C和D的记录。 我的SQL1 SELECT * FROM main_table order by main_table.date desc limit 2返回A和B。 我的SQL2 SEL
select round(836.0)返回836.0 我如何删除sqlite查询中的尾随零。 836.00应该是836 836.440应该是836.44 最佳答案 如果需要836.44,则需要十进制返
我正在研究RQDA中的文本,并且正在使用Firefox SQLite Manager访问数据库,以便可以更轻松地搜索文件。我创建并填充了虚拟表: CREATE VIRTUAL TABLE texts
我有这样的数据: table1 id | part | price 1 | ox900 | 100 2 | ox980 | 200 和 table2 id | part | price 1
我正在尝试将一些数据插入现有的SQLite表中。该表和数据库是使用相同的API创建的,但是由于某种原因,插入操作无效,并且从不给我任何错误消息。 我正在BlackBerry 9550模拟器上对此进行测
例如,我在名为SALARY的列中插入一个值。如果插入的值大于1000,我想将字符串HIGH插入到RANK列中,否则将插入LOW中。 我可以使用SQLite做到吗? 最佳答案 在插入之前使用触发器,然后
假设我有一个包含三列A,B,C的表t1,其中(A,B)包含唯一键(具有数十万行)。由于90%的查询将采用SELECT C FROM t1 WHERE A =?和B = ?,我想我要为A,B和C提供覆盖
在一个SQLite3数据库中,我有一个表“ projects”,其id字段由以下方式组成: [user id]_[user's project id] 例如,用户ID = 45,这是一些数据: 45_
我了解PRAGMA foreign_key和ON DELETE RESTRICT/NO ACTION的概念,但是我面临的是另一种情况。 我需要删除一个父行,但保持与之关联的子行。例如: CREATE
我的c#应用程序从Web服务1读取文件列表,并将完整的文件名插入table1,然后从第二个Web服务读取list并将它们插入到table2。 这些表具有相同的结构,如下所示: create table
我在以下情况下尝试将Record1的ID更新为Record2的ID: 两个表中的名称相同,并且 在Record2中权重更大。 记录1 | ID | Weight | Name | |----|----
我是一名优秀的程序员,十分优秀!