Questions tagged «sqlite»

SQLite是一个软件库,可实现自包含,无服务器,零配置的事务型SQL数据库引擎。

1
iOS中的Google Analytics(分析)SDK 3.0 _sqlite3链接器错误
我正在将Google Analytics(分析)SDK 3.0集成到我的项目中。但是在尝试构建项目时出现链接器错误。 如文档中所述,我已经在项目中链接了以下库, libGoogleAnalyticsServices.a AdSupport.framework CoreData.framework SystemConfiguration.framework libz.dylib 即使那样,我在构建项目时也会遇到以下错误, d: warning: directory not found for option '-L"/Users/....NameProject/Libraries/Google Analytics"' "_sqlite3_bind_blob", referenced from: -[TAGDataLayerPersistentStoreImpl writeEntriesToDatabase:expireTime:] in libGoogleAnalyticsServices.a(TAGDataLayerPersistentStoreImpl.o) "_sqlite3_bind_int", referenced from: -[TAGDataLayerPersistentStoreImpl deleteEntries:] in libGoogleAnalyticsServices.a(TAGDataLayerPersistentStoreImpl.o) "_sqlite3_bind_int64", referenced from: -[TAGDataLayerPersistentStoreImpl writeEntriesToDatabase:expireTime:] in libGoogleAnalyticsServices.a(TAGDataLayerPersistentStoreImpl.o) -[TAGDataLayerPersistentStoreImpl peekEntryIds:] in libGoogleAnalyticsServices.a(TAGDataLayerPersistentStoreImpl.o) .... 是什么导致这些错误?我有什么想念的吗? 感谢您的帮助。 解: 我通过将我的项目与libsqlite3.0库链接解决了。Google Analytics(分析)文档漏掉了提及链接此库的内容。希望这可以帮助。


11
如何将新列添加到Android SQLite数据库?
我对AndroidSQLite数据库有一个问题。 我有一个包含一个字段的表.StudentFname并且该应用程序在Android 2.3.1上运行良好,现在如果我添加另一个字段,则我的应用程序无法正常运行。 谁能帮助我非常了解数据库的我,

5
如何从SQLite表中检索最后一个自动递增的ID?
我有一个表Messages,其列ID(主键,自动递增)和Content(文本)。 我有一个表Users,具有用户名列(主键,文本)和哈希。 一个发件人(用户)将一条消息发送给许多收件人(用户),并且一个收件人(用户)可以有很多消息。 我创建了一个具有两列的表Messages_Recipients:MessageID(指的是Messages表的ID列和Recipient(指的是Users表中的username列)。该表代表了收件人和消息之间的多对多关系。 所以,我的问题是这个。将新消息的ID存储在数据库中后,将创建该ID。但是,如何保留对我刚刚添加的MessageRow的引用,以检索此新的MessageID?我总是可以在数据库中搜索添加的最后一行,但是在多线程环境中可能返回其他行吗? 编辑:据我了解,对于SQLite,您可以使用SELECT last_insert_rowid()。但是,如何从ADO.Net调用此语句? 我的持久性代码(消息和消息收件人是数据表): public void Persist(Message message) { pm_databaseDataSet.MessagesRow messagerow; messagerow=messages.AddMessagesRow(message.Sender, message.TimeSent.ToFileTime(), message.Content, message.TimeCreated.ToFileTime()); UpdateMessages(); var x = messagerow;//I hoped the messagerow would hold a //reference to the new row in the Messages table, but it does not. foreach (var recipient in message.Recipients) { var …

4
SQlite:选择成?
我不确定是否可以使用select into从另一个表中导入数据,如下所示: select * into bookmark1 from bookmark; SQlite不支持此语法是真的吗?还有其他选择吗?
80 sql  sqlite 


4
在sqlite中将int转换为实数
sqlite除法返回整数值 sqlite> select totalUsers/totalBids from (select (select count(*) from Bids) as totalBids , (select count(*) from Users) as totalUsers) A; 1 我们可以转换结果以获得除法结果的真实价值吗?
80 sql  sqlite  casting  division 

3
如果SQLite中不存在怎么办
我正在尝试将此行从MS SQL Server移植到SQLite IF NOT EXISTS(SELECT 1 FROM EVENTTYPE WHERE EventTypeName = 'ANI Received') INSERT INTO EVENTTYPE (EventTypeName) VALUES ('ANI Received'); 似乎SQLite不支持IF NOT EXISTS,或者至少我无法使其工作。我是否缺少简单的东西?有解决方法吗?
80 sql  sqlite 

3
SQLite中的ALTER COLUMN
如何更改sqlite中的列?这是在Postgresql ALTER TABLE books_book ALTER COLUMN publication_date DROP NOT NULL; 我相信sqlite中根本没有ALTER COLUMN,仅支持ALTER TABLE。 任何的想法?谢谢!
80 sqlite 



3
在哪里可以找到SQLite数据库文件或它的转储示例?[关闭]
关闭。此问题不符合堆栈溢出准则。它当前不接受答案。 想改善这个问题吗?更新问题,使其成为Stack Overflow的主题。 去年关闭。 改善这个问题 我确实需要一个sqlite数据库文件来进行研究。我正在用C#创建一个应用程序,我需要一个包含许多表,字段,视图,索引,约束等的数据库。而且我不想使用sqlite命令行工具自己创建它。 所以我想也许有人可以说我在哪里可以找到这样的文件,可能是不同的应用程序或示例,甚至可以给我发送自己的数据库文件。我将不胜感激。
79 sqlite 

3
为什么SQLAlchemy用sqlite插入比直接使用sqlite3慢25倍?
为什么这个简单的测试用例用SQLAlchemy插入100,000行比直接使用sqlite3驱动程序慢25倍?我在现实世界的应用程序中看到过类似的减速情况。难道我做错了什么? #!/usr/bin/env python # Why is SQLAlchemy with SQLite so slow? # Output from this program: # SqlAlchemy: Total time for 100000 records 10.74 secs # sqlite3: Total time for 100000 records 0.40 secs import time import sqlite3 from sqlalchemy.ext.declarative import declarative_base from sqlalchemy import Column, Integer, String, create_engine from …

5
Android数据库加密
Android使用SQLite数据库存储数据,我需要加密SQLite数据库,该怎么办?我了解应用程序数据是私有的。但是,我需要明确加密我的应用程序正在使用的SQLite数据库。

3
sqlite是否在select中支持任何类型的IF(condition)语句
sqlite是否在select语句中支持sql函数“ if”? 例如 select if( length( a ) > 4 , a , ' ') as b from foo 如果长度超过4个字符,则返回a。否则它将返回''为b 如果它在选择中支持条件,则应使用什么语法? 我已经检查了 http://sqlite.org/lang_corefunc.html,但看不到。
78 sql  sqlite 

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.