Tagged Questions
0
votes
2answers
66 views
Database not persisted between builds with xamarin ios
I'm creating a simple sqlite driven app for ios using xamarin studio on a mac.
The sqlite file is created in the "personal" folder and is persisted between builds but when i run the app the tables i ...
-1
votes
1answer
39 views
How can I manage my SQLite DB versions in Monotouch? [closed]
If I release my app, and in 2 weeks I release a new update, and I need to change the database, whats the solution?. For example in Android I´ve a SQlite library override Void that check the Database ...
1
vote
1answer
44 views
How can I see the data in my SQLite DB in Xamarin?
The thing is that I´m working with Xamarin developing an IOs app and using SQLite for data persistence, and I just need to know how can I visualize the data I´m storing. Just like the DDMS view in ...
0
votes
1answer
69 views
SQLite query case sensitive
I have a table with few columns in SQLite. I have two columns that I need to use for querying this table (code, Description). Both of these have the COLLATE NOCASE when creating the tables as below:
...
1
vote
1answer
65 views
Monotouch Sqlite-net or ADO.Net
I would like to use Sqlite database in my Monotouch app. From http://docs.xamarin.com/recipes/ios/data/sqlite i see two options.
Sqlite-net
ADO.NET
Doing research i found that Sqlite-net is ...
0
votes
1answer
75 views
SQLite is not storing GUID values properly on MonoDroid and MonoTouch
I am using MonoDroid to port the data-layer from my Window Mobile app to Android and iOS.
My data-layer is working and very well tested on SQL SERVER, SQL CE, and Windows SQLite.
I created class ...
2
votes
0answers
32 views
MonoTouch CoolStorage OneToMany caching issue
I'm experiencing an issue with CoolStorage where a OneToMany relationship is being cached when reading a list for the first time, that list then fails to update when the data changes later.
When ...
0
votes
1answer
35 views
Monotouch and SQLite
I have a SQLite database with one table for cities name now I want to include this database to my monotouch project, connect to this database and select to this table. But I can find any tutorial to ...
2
votes
1answer
80 views
SQLite with RELEASE build of MonoTouch - Can't get PK?
I have been working with Monotouch and using the Debug build for the entire project. I recently changed it to release build to run it and it crashed on startup. Turning debug symbols on I found that ...
1
vote
1answer
115 views
MonoTouch: SQLite-net thread safety and SQLiteConfig.Serialized
I am trying to make SQLite default to be "more" thread-safe by calling something like this code:
SqliteConnection.SetConfig (SQLiteConfig.Serialized);
I think it's related to setting:
...
1
vote
3answers
127 views
Monotouch SQLite will this create a new db every time?
I'm a little new to this. I wanted to use the SQLite-net dealio using https://github.com/praeclarum/sqlite-net/blob/master/examples/Stocks/Stocks.cs
That's the exact ecample where I got this code. I ...
1
vote
1answer
96 views
MonoTouch: SQLIte.net sending multiple parameters
I am using the SQLite ORM from Monotouch (https://github.com/praeclarum/sqlite-net)
I am trying to send in multiple parameters, but the parameter that is a string is not being added:
var items = ...
0
votes
1answer
70 views
Sqlite query returns different result when executed on iOS 5 compared to iOS 6 or a DB application
I'm executing this query in a Sqlite database app, namely "Base.app" (can be found on the Mac App Store) and I get three result rows. I also get three rows if I execute the code below on iOS6. On iOS ...
2
votes
1answer
324 views
Write to SQLite database from XML data
Given the following code to export each table in the database:
string strSql = "SELECT * FROM " + tableName;
SqliteConnection sqlCon = new SqliteConnection("Data Source=" + dbPath);
using ...
2
votes
2answers
211 views
mvvmcross sqlite-net plugin for monotouch
I am implementing the excellent mvvmcross library in a multiplatform enterprise application. The monodroid sqlite plugin is working - I now need to implement monotouch functionality though.
I was ...
1
vote
2answers
74 views
Sqlite database locked when executing “END”
In order to speed up my DB insertions on an Sqlite3 DB on iOS6, I'm wrapping the inserts in "BEGIN" and "END" commands.
The DB is set to run in serialized mode.
The interesting thing is that I'm ...
1
vote
0answers
50 views
SQLite on Mono Shared Cache Mode?
Does Mono.Data.SQLite support in-memory databases using Shared Cache Mode? I'm getting an ArgumentException complaining about the format of the data source URI string. The connection string I'm ...
2
votes
1answer
134 views
custom functions SQLite with Mono
is there a way to add SQLite custom function using Mono? (Mono.Data.Sqlite)
I tried to add distance function that returns the distance between two geo locations
[SqliteFunctionAttribute(Name = ...
2
votes
0answers
100 views
Vici CoolStorage Primary Key Not Set To INTEGER AUTOINCREMENT
I guess this is to do with my lack of understanding of how Vici CS ORM for MonoTouch works.
When using Vici CS for Monotouch, instantiating a DB-mapped object takes long time (several tens of seconds) ...
1
vote
2answers
102 views
Where are the sqlite drivers for monotouch?
On the sqlite-net github page, it indicates that in addition to this library, I also need the compiled sqlite2 binaries:
0 dependencies aside from a compiled form of the sqlite2 library.
I ...
2
votes
3answers
419 views
MonoTouch & SQLite - Cannot open database after previous successful connections
I am having difficulty in reading data from my SQLite database from MonoTouch.
I can read and write without any difficulty for the first few screens and then suddenly I am unable to create any ...
1
vote
1answer
186 views
iOS6 device only. UITableView disappears off screen when making a call to sqlite and returning from a UINavigation
My iPhone app (developed using c# and monotouch) has worked fine on iOS5. Since the upgrade to iOS6, I am experiencing the following problem: (NOTE: only occurs on device, not simulator)
My first ...
0
votes
1answer
197 views
Using MonoCross, where should the creation of SQLite databases live?
Due to the differences in file structure etc. between platforms, I was wondering if the database creation (with connection strings) need to be platform specific? Or if there's maybe a way to create a ...
2
votes
1answer
334 views
MonoTouch + SQLite + SQLite.Net ORM: Full Text Indexing
I use the SQLite.NET ORM wrapper for SQLite on MonoTouch to create a database based on business objects. Works fine.
I wish to run the SQLite full text indexing command so that a full text virtual ...
7
votes
2answers
274 views
SQLite file containing garbage characters
I'm currently using MonoTouch and SQLite in order to determine whether using a database with encryption is better than a standard .txt file with encryption.
I am attempting to use RijndaelManaged and ...
0
votes
3answers
166 views
SQLite slow query on iPad
I have a table with almost 300K records in it. I run a simple select statement with a where clause on an indexed column ('type' is indexed):
SELECT *
FROM Asset_Spec
WHERE type = 'County'
That ...
2
votes
1answer
820 views
How to get SQLite.net to work with Mono Android?
I am successfully using SQLite-net (https://github.com/praeclarum/sqlite-net) in my MonoTouch project. However when I try to use the same in Mono Android, the Database call throws an exception in the ...
1
vote
1answer
289 views
Create a SQLite database with Monotouch - permission denied
I am trying to create a Sqlite database using Monotouch 3.0.3.4. Everything works fine on the iPhone simulator, but I get the following error on the test iPhone:
DataLayer.CreateDatabase Exception: ...
0
votes
1answer
150 views
SQLite Syntax Error when it should not
In a monotouch application, I am using this code to insert a value:
string sql = "insert or ignore into [translation] values ...
0
votes
1answer
637 views
Populating a UIPickerView with data from Sqlite DataBase in IPhone App --
I have an sqlite database with a table 'BikeInfo'
[BikeID, BikeName]
Now I want my pickerview to be populated with names of bikes from this database. In .Net it was so easy. But being a complete ...
1
vote
1answer
116 views
SQLite for iOS - RANDOM() not good enough
I am working on an iOS word game which is built around pulling random words from a SQLite database.
So I have 1 table, Words, I pull out X random words like so:
SELECT Word FROM (SELECT Word FROM ...
0
votes
0answers
153 views
Data displayed redundantly on my UITableView in monotouch
I have problem in populating a table in monotouch using SQLite as database. My problem is it only selects the last data inserted and returns it as many as the number of data in the table selected.
...
2
votes
1answer
355 views
SQLite on iOS - SQL to copy from one file to another
I have 2 database files in my iOS app:
An original database (readonly, kept in my app's home directory)
The user's database (kept in the user's Documents folder)
I need to run a SQL query to copy ...
1
vote
1answer
625 views
SQLite Guide to Monotouch Development
Hi do you know any resource wherein they have a complete guide on how to use SQLite on Monotouch (the one with ORM functions)
0
votes
1answer
130 views
Why do I get an exception when updating row on sqlite with monotouch?
I have a simple table and when I try to update row on SQLite, the application close and expose this exception:
Stacktrace:
at (wrapper managed-to-native) ...
2
votes
1answer
662 views
Debugging SQLite db on iPhone
I'm making an iPhone app using Monotouch.
In my app I create an SQLite DB and use it to store a lot of data.
Is there any way to query the data in the phone/simulator? I mean the data that "lives" ...
2
votes
1answer
384 views
Using SQLCipher with MonoTouch
I've compiled a static library and linked both SQLCipher and OpenSSL. The full project, makefile, and compiled library can be found here:
https://github.com/anujb/SQLCipherNet
When I link the ...
2
votes
1answer
484 views
Database disk image is malformed in MonoTouch
I am using Monotouch 5 to develop a multithreaded messaging application. After some days of operation, some customers receive the error Database disk image is malformed. I am using the SQLite.cs from ...
1
vote
2answers
624 views
Where to store the SQLite database file?
I have a SQlite database file with records which comes with my app.
I just used the file I added to my project to make my INSERT and UPDATE statements.
After uploading it to my test device I got the ...
8
votes
1answer
960 views
Replication Framework for Mono
We are considering adopting MonoTouch and MonoDroid for building a cross platform business App.
This App will handle a local database that needs to be synchronized with a master database (only one ...
1
vote
2answers
310 views
Int64 throws “Number overflow” using SQLite
I've created an SQLite database (in windows) with a Int64 column. I copied the database to my MonoTouch program.
When I try to read the column in MonoTouch (Mono.Data.Sqlite), it throws a "Number ...
5
votes
3answers
874 views
Can't open Sqlite database in read-only mode
I have a Sqlite database that I include with my MonoTouch app. It has worked fine for me so far, but now I want to open it in read-only mode rather than read-write.
So I have changed the connection ...
3
votes
2answers
878 views
Sqlite3 database in iPhone gets locked - how to avoid?
I have a query that performs a search on an Sqlite3 DB. It does nothing but read using a reader.
For each found match it calls a callback to the UI which updates a result view.
While this search is ...
2
votes
2answers
278 views
iPhone - Connection String and DB File
I am developing a iPhone app using Monotouch. I need to access a Sqlite DB. In my soultion, I have a contracts, data access, business access and UI project. I have two questions:
Where should I ...
1
vote
1answer
420 views
iOS iPhone SQLite and Monotouch issue
I have successfully developed a small iPhone+Monotouch (latest version) application with Monodevelop 2.8, which use a "compiled by me" version of SQLite to enable FTS4.
To compile SQLite as static ...
1
vote
1answer
520 views
MonoTouch: Can't create DbParameterCollection?
I'm a vb.net guy trying to figure out MonoTouch c#.
I made this data helper:
public static void ExecuteCommand (SqliteConnection cnn, string command, System.Data.Common.DbParameterCollection ...
0
votes
2answers
944 views
How to create database and table in sqlite programatically using monotouch?
Can any body help me about, how to create simple database and tables programatically and insert values ,step by step procedure in sqlite using monotouch.I am new to this technology .
Thank you..
1
vote
1answer
245 views
Following: How to use FTS in SQLite with Monotouch for iOS
I'm currently following this small tutorial about MonoTouch, SQLite and FTS3:
How to use FTS in SQLite with Monotouch
I've sucessfully done step 1 and 2. Unfurtunatelly I'm facing a problem on step ...
1
vote
1answer
638 views
Use MonoDroid / MonoTouch to reuse DataAccess in Mobile Application
We have a .net desktop application that has a mobile component (Windows Mobile). The mobile component edits a specific subset of the system data. We would like to create an iPhone and Android version ...
0
votes
1answer
288 views
Monotouch: How to get a localized string from sqlite DB
I want to display a list of items from my sqlite DB in a tableView. These items need to be localized depending on the language selected on the phone.
As an example, if on of the items in the DB was ...


