Hi do you know any resource wherein they have a complete guide on how to use SQLite on Monotouch (the one with ORM functions)
Have you read this? https://github.com/praeclarum/sqlite-net
Once you read that, you might find https://github.com/jstedfast/MonoTouch.SQLite useful for pulling data from an sqlite db into a UITableViewController.
Related
Currently I have developed a c# project with Sqlite3. I need to replace Sqlite3 with Berkeley DB.
I need to know the followings,
Is it possible to replace? if yes, what should we follow?
Please advice.
Thank you.
There's an easy way and a hard way to replace sqlite3 with BerkeleyDB.
The easy way is to replace the sqlite3 libraries with the sqlite3 wrapper library (part of modern Berkeley DB) that uses BerkeleyDB as the data store engine under a modified sqlite3 (it's exactly a sqlite3 API).
The harder implementation would be to rewrite the SQL methods to use Berkeley DB. Since Berkeley DB is basically a NoSQL! key->value store, you will likely need to think about whether your schema is simple enough to justify the work involved.
I have integrated my project with Jaydata using sqlite provider.
I have searched and tried but did not find any alternative to write sql queries in the function of Jaydata.
I want to group my data upto multiple levels which is same as 'groupby' in sql/sqlite.
Can someone please tell me that is it possible to write sql / sqlite queries using Jaydata because when I have done my R&D I have found that only JavaScript Query Language can be used which is comprising of some functions like .filter(),.toArray(),.map(),.take(),.orderBy,etc.
What is the best alternative to work for offline db?
Help would be Appreciated!!
no, it is not possible
you can postprocess your data in javascript
In SQLite provider - JayData:
The JayData added value
The SQLite / WebSQL provider is one of our most developed and used
providers, allowing you to make use of the full power of the
JavaScript Language Query (JSLQ).
So, JayData is used in this context to avoid making you write SQL!
If you pretend so, use websql directly!
I'm new to Dotnet, can someone please advice - I want to write a CLASS LIBARY which will help multiple functions and they will fetch values from database. This CLASS LIBRARY would then be compiled as DLL and given to other apps to use.
Can anyone provide me link - where I can find good samples of Ado.net or can anyprovide working code which shows me how to fetch multiple or single values from database (writing all this in class library)
Regards
ADO.NET #MSDN is a good starting point.
CodeProject features a good tutorial.
Check this out: Retrieving and Modifying Data in ADO.NET
If you already know how to create and open a connection to database, then read this section: DataAdapters and DataReaders
Go to http://www.w3schools.com/, it will be help lot of can you do better.
I need to write documentation for several small sqlite databases. Want to describe how the data is used, including table and row descriptions and sample data.
Is it possible to use MySQL Workbench? If not are there any alternatives, or any templates I could work from?
TIA!
Using MySQL Workbench is not possible since, as far as I know, it only supports exporting to SQLite. For a number of suggestions about free database managers you might want to take a look at What are good open source GUI SQLite database managers? - a number of the GUIs mentioned there support report generation.
Definitely far more feature rich, but with a significant price tag, is Navicat for SQLite, which is an excellent database manager with report generation features.
I am looking for a good change management application for use with SQLite. In the past I have used SQL Data compare by Redgate, but I have been unable to find anything similar that supports SQLite.
I need to update a fairly large encrypted SQLite database (~1,000,000 rows and 74MB). If possible I would like to generate some scripts to just update the changes rather than force users to download a whole new copy of the database. The version of SQLite we are using is 3.6.23.1. Thanks in advance for any recommendations :)
Have you tried SQLite Compare? It's freeware, and I have used it to compare schemas/data. I think it will also generate SQL update scripts for you too.