active questions tagged sqlite - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T23:59:42Zhttp://stackoverflow.com/feeds/tag/sqlitehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1949321/using-sqlite-or-ms-access-how-should-the-tables-be-organized-to-model-the-logic1Using SQLite or MS Access, how should the tables be organized to model the logic of this 3D structure?sealclubber2009-12-22T21:32:15Z2009-12-22T21:32:15Z
<p><a href="http://en.wikipedia.org/wiki/List%5Fof%5Femotions#Plutchik.27s%5Fwheel%5Fof%5Femotions" rel="nofollow" title="Wikipedia article">Here is an explanation</a> of how the elements are related. </p>
<p>tl;dr: Intensity is strongest at the center of the diagram. The basic emotions (in the arms) combine to form secondary emotions in the outer circle. (i.e., Anticipation + Joy = Optimism)</p>
<p>What is the best way to design a database to model this set of relationships?</p>
<p><img src="http://upload.wikimedia.org/wikipedia/commons/e/e9/Plutchik%27s%5FWheel%5Fof%5FEmotions.png" alt="Plutchick's Wheel of Emotions"></p>
http://stackoverflow.com/questions/1948613/system-data-sqlite-design-time-db-connection-error0System.Data.SQLite Design-Time: DB Connection Errordeftonix2009-12-22T19:33:44Z2009-12-22T19:33:44Z
<p>Hi guys,<br>
I am having a strange error with VC# Express and System.Data.SQLite's Design-Time Database Explorer. You can see the error itself at <a href="http://tinypic.com/r/rcsl5g/6" rel="nofollow">http://tinypic.com/r/rcsl5g/6</a>. What happens is, I go to Tools -> Connect to Database, select SQLite Database File, and then a window comes up with one place to enter a Connection String(you can see this window behind the error message). No matter what connection string I use, the same thing happens.</p>
<p>Thanks,<br>
deftonix</p>
http://stackoverflow.com/questions/1945470/xml-vs-sqlite-vs-access1XML vs. SQlite vs. Accessunknown (google)2009-12-22T10:23:33Z2009-12-22T10:53:25Z
<p>Question: We've started a project for a customer, which includes what would normally be done with a database.</p>
<p>However, the customer wants no database installed, since it's only a little application.
We however intend to reuse the code for a larger project, which will use a database.</p>
<p>The problem is all the server side code will be different if I'm using XML or SQlite or Access.</p>
<p>I'm tending towards SQlite, but I don't know.
Would adding the database in an MS-Access file be a better solution?
If I would put it into an access database, does the customer need MS-Access installed or only the MSFT MDAC ? If I use the Access DB, will that run under Linux with Mono, too, or is there no MDAC replacement ?</p>
http://stackoverflow.com/questions/1943704/sqlitefunction-simple-not-working0SQLiteFunction Simple Not WorkingScSub2009-12-22T01:32:23Z2009-12-22T01:45:56Z
<p>I an attempting to use a SQLiteFunction from my C# and ADO.NET code. Can anyone say why I get this problem?</p>
<p>An unhandled exception of type 'System.Data.SQLite.SQLiteException' occurred in System.Data.SQLite.dll
Additional information: SQLite error near "DEMOIT": syntax error</p>
<p>I am using .NET 3.5 x86 with SQLite ADO.NET 1.0.65 - Help!</p>
<pre><code>public class Program
{
static void Main( string[ args )
{
test();
}
public static void test()
{
SQLiteConnection sqlConn = new SQLiteConnection( "Data Source=TestFoods.db;" );
sqlConn.Open();
SQLiteCommand sqlCmd = new SQLiteCommand( "PRAGMA integrity_check" , sqlConn);
sqlCmd.ExecuteNonQuery();
SQLiteFunction.RegisterFunction( typeof(DEMOIT) );
sqlCmd = new SQLiteCommand( "SELECT * FROM Foods Where Foods.Name DEMOIT '$butter' " , sqlConn );
sqlCmd.CommandType = CommandType.Text;
SQLiteDataAdapter liteAdapter = new SQLiteDataAdapter( sqlCmd );
DataSet dataSet = new DataSet();
liteAdapter.Fill( dataSet , "Foods" );
}
}
[SQLiteFunction( Name = "DEMOIT" , Arguments = 1 , FuncType = FunctionType.Scalar )]
public class DEMOIT : SQLiteFunction
{
public override object Invoke( object[] args )
{
return Convert.ToString( args[0] ) ;
}
}
</code></pre>
<p>Thanks!</p>
http://stackoverflow.com/questions/1943271/select-from-an-sqlite-database-and-assigning-it-to-a-variable1SELECT from an SQLite database and assigning it to a variableMark Provan2009-12-21T23:21:12Z2009-12-22T00:14:35Z
<p>I am trying to retrieve a password from an SQLite database. The id of the row the password is in is 1. I want to assignt his password to a variable called actualpass.</p>
<p>This is as far as I got before I became stuck. Can anyone help?</p>
<pre><code>Private Sub LoginButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles LoginButton.Click
Dim SQConnect As New SQLite.SQLiteConnection
Dim SQCommand As New SQLite.SQLiteCommand
Dim actualpass As String
Dim givenname As String
Dim path As String
path = AppDomain.CurrentDomain.BaseDirectory()
givenname = txtUsername.Text
SQConnect.ConnectionString = ("Data Source=" & path & "app_data\data.db3")
SQConnect.Open()
SQCommand = SQConnect.CreateCommand
SQCommand.CommandText = ("SELECT password from login_data WHERE id =1")
End Sub
</code></pre>
http://stackoverflow.com/questions/1943095/sqlite3-database-versus-populating-arrays0Sqlite3 Database versus populating ArraysKenoy2009-12-21T22:38:12Z2009-12-21T22:43:01Z
<p>hi,</p>
<p>I am working on a program that requires me to input values for 12 objects, each with 4 arrays, each with 100 values. (4800) values. The 4 arrays represent possible outcomes based on 2 boolean values... i.e. YY, YN, NN, NY and the 100 values to the array are what I want to extract based on another inputted variable.</p>
<p>I previously have all possible outcomes in a csv file, and have imported these into sqlite where I can query then for the value using sql. However, It has been suggested to me that sqlite database is not the way to go, and instead I should populate using arrays hardcoded.</p>
<p>Which would be better during run time and for memory management?</p>
http://stackoverflow.com/questions/1942586/comparison-of-database-column-types-in-mysql-postgresql-and-sqlite-cross-mapp3Comparison of database column types in MySQL, PostgreSQL, and SQLite? (Cross-Mapping)Xeoncross2009-12-21T20:57:56Z2009-12-21T21:36:51Z
<p>I am trying to find some way to <a href="http://en.wikibooks.org/wiki/Converting%5FMySQL%5Fto%5FPostgreSQL" rel="nofollow">relate column types</a> across the the most used Databases: <a href="http://dev.mysql.com/doc/refman/5.1/en/data-types.html" rel="nofollow">MySQL</a>, <a href="http://www.postgresql.org/docs/8.3/static/datatype.html" rel="nofollow">PostgreSQL</a>, and <a href="http://www.sqlite.org/datatype3.html" rel="nofollow">SQLite</a>. </p>
<p>Here is what I have so far, but I'm afraid it's not done and I need some people with more experience to help me finish any missing types.</p>
<pre><code>MySQL PostgreSQL SQLite
TINYINT SMALLINT INTEGER
SMALLINT SMALLINT
MEDIUMINT INTEGER
BIGINT BIGINT
_______________________________________________________
TINYINT UNSIGNED SMALLINT INTEGER
SMALLINT UNSIGNED INTEGER
MEDIUMINT UNSIGNED INTEGER
INT UNSIGNED BIGINT
BIGINT UNSIGNED NUMERIC(20)
_______________________________________________________
DOUBLE DOUBLE PRECISION REAL
_______________________________________________________
BOOLEAN BOOLEAN INTEGER
_______________________________________________________
DATE DATE TEXT
TIME TIME
DATETIME TIMESTAMP
_______________________________________________________
TIMESTAMP DEFAULT TIMESTAMP DEFAULT TEXT
NOW() NOW()
_______________________________________________________
LONGTEXT TEXT TEXT
MEDIUMTEXT TEXT TEXT
BLOB BYTEA BLOB
_______________________________________________________
columnname INT columnname SERIAL INTEGER PRIMARY
AUTO_INCREMENT KEY
</code></pre>
http://stackoverflow.com/questions/1935788/how-to-populate-a-label-field-from-a-selected-row-in-a-uitableview0How to populate a label field from a selected row in a uitableviewWes2009-12-20T13:02:21Z2009-12-21T20:18:42Z
<p>I have a uitableview that is populated from a sqlite query.</p>
<p>I want to select or click on a row and then display that row's value in a uilabel field. To show the user that the row was selected.<br>
I also want to pass that value on to different controllers that will be called later.</p>
<p>Here is a copy of my cellForRowAtIndexPath:</p>
<pre><code>- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"psystem";
PSystem *psystem = [self.ppdm_systems objectAtIndex:indexPath.row];
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
// Set up the cell...
// self.accessoryType = UITableViewCellAccessoryCheckmark;
cell.textLabel.text = psystem.system_id;
return cell;
}
</code></pre>
<p>I took out the _label.text .... in my various experiments.</p>
<p>Now what is not working is the passing of the value to different controllers.</p>
<p>Using the example listed here, the source controller is TableViewController and is where the value is set. The target controller is DetailViewController.<br>
I can pass the title of the tab bar in, but that's from TableView --> DetailView.<br>
I am not sure how to pull from tableview; ie: Tableview <-- DetailView when I am in DetailView. </p>
<p>thx</p>
http://stackoverflow.com/questions/1241356/windows-pre-caching-sqlite-problem1Windows Pre-Caching SQLite problemMike Trader2009-08-06T20:50:11Z2009-12-21T18:02:25Z
<p>SQLite is a great little database, but I am having an issue with it on Windows. It can take up to 50 seconds to perform a query on a 100MB database the first time the application is launched. Subsequent loads take 10% of that time.</p>
<p>After some discussions on the SQLite mailing list, I am told
"The bug is in Windows. It aggressively pre-caches big database files<br />
-- reads in big chunks of the files -- to make it look as if programs<br />
like Outlook are better than they really are. Unfortunately although<br />
this speeds up some programs it makes others act jerky because they<br />
have no control over how much is read when they ask for just a few<br />
bytes of file."</p>
<p>This problem is compounded because there is no way to get progress information while all this is happening from SQLite, so my users think something is broken. (I could display a dummy progress report, but that is really cheesy for a sharp tool.)</p>
<p>I believe there is a way to turn the pre-caching off globally, but is there some way around this programmatically? </p>
http://stackoverflow.com/questions/1941065/nhibernate-and-sqlite-could-not-compile-the-mapping-document0NHibernate and sqlite - Could not compile the mapping documentNadav2009-12-21T16:23:53Z2009-12-21T17:53:58Z
<p>Hey,
I'm trying to run an NHibernate over sqlite.
i have two projects:
1. Orange.Database - holds the pocos and daos and everything else
2. Orange.GUI - holds the gui...</p>
<p>when the program reach to the reach the:</p>
<pre><code> Configuration config = new Configuration();
config.AddAssembly("Orange.Database");
sessionFactory = config.Configure().BuildSessionFactory();
</code></pre>
<p>an exception is thrown: "Could not compile the mapping document: Orange.Database.Pocos.City.hbm.xml "
inner exception: "Could not find the dialect in the configuration"</p>
<p>city.hbm.xml:</p>
<pre><code><?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2"
namespace="Orange.Database.Pocos">
<class name="City" table="Cities">
<id name="Id">
<column name="Id" sql-type="int" not-null="true"/>
<generator class="identity"/>
</id>
<property name="Name">
<column name="name" not-null="true"/>
</property>
<property name="IsTaxFree">
<column name="is_tax_free" not-null="true"/>
</property>
</class>
</hibernate-mapping>
</code></pre>
<p>I tried writting the assembly, and then removed it..</p>
<p>the app.config file:</p>
<pre><code><?xml version="1.0" encoding="utf-8" ?>
</code></pre>
<p></p>
<pre><code><configSections>
<section name="hibernate-configuration"
type="NHibernate.Cfg.ConfigurationSectionHandler,NHibernate"/>
</configSections>
<hibernate-configuration xmlns="urn:nhibernate-configuration-2.2" >
<session-factory>
<property name="connection.provider">NHibernate.Connection.DriverConnectionProvider</property>
<property name="connection.driver_class">NHibernate.Driver.SQLiteDriver</property>
<property name="connection.connection_string">
Data Source=C:\Users\Nadav\Documents\Visual Studio 2005\Projects\orange\DB\OrangeDB\OrangeDB.db;Version=3
</property>
<property name="dialect">NHibernate.Dialect.SQLiteDialect</property>
<property name="query.substitutions">true=1;false=0</property>
</session-factory>
</hibernate-configuration>
</configuration>
</code></pre>
<p>I've tried different location of the db file..
i have tried to remove the configSections
and some other ideas i found on the web...</p>
<p>I'm using vs 2005
NHibernate version is 2.0.1.4000</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/1940829/what-is-the-quickest-ay-to-enable-fulltext-support-for-sqlite-3-on-os-x0What is the quickest ay to enable fulltext support for Sqlite 3 on OS X?crunchyt2009-12-21T15:43:42Z2009-12-21T16:25:02Z
<p>Sqlite comes installed with OS X Developer Tools. What is the quickest/best way to upgrade or rebuild the default binary to support Sqlite's fulltext features?</p>
http://stackoverflow.com/questions/1940316/search-in-sqlite-table-where-column-matches-regex1Search in sqlite table where column matches regexKoning Baard XIV2009-12-21T14:09:54Z2009-12-21T14:17:46Z
<p>Hi,</p>
<p>I'm writing a web application in Rails which uses sqlite. I want the user to be able to search a table in the database by using a regex. Is this possible? Thanks.</p>
http://stackoverflow.com/questions/1938522/python-sqlite-query-to-match-values-from-a-list1Python/sqlite query to match values from a list [closed]JS_is_bad2009-12-21T06:27:52Z2009-12-21T06:36:35Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/283645/python-list-in-sql-query-as-parameter">python list in sql query as parameter</a> </p>
</blockquote>
<p>I am trying to write a SELECT query that shall match values I have in a list.</p>
<p>Currently my code looks like this:</p>
<pre><code>values = [1,2,3]
query = 'SELECT * FROM mytable WHERE value IN (%s)' % ', '.join(['?'] * len(values))
cursor.execute(query, tuple(values))
</code></pre>
<p>Since I manually build a part of the query, I'm not sure this is the best way.</p>
<p>Is there a more elegant way of doing it?</p>
http://stackoverflow.com/questions/75675/how-do-i-dump-the-data-of-some-sqlite3-tables0How do I dump the data of some SQLite3 tables?J. Pablo Fernández2008-09-16T18:52:49Z2009-12-21T06:12:45Z
<p>How do I dump the data, and only the data, not the schema, of some SQLite3 tables of a database (not all the tables)?
The dump should be in SQL format, as it should be easily re-entered into the database latter and should be done from the command line. Something like</p>
<pre><code>sqlite3 db .dump
</code></pre>
<p>but without dumping the schema and selecting which tables to dump.</p>
http://stackoverflow.com/questions/1937834/dont-have-the-right-syntax-when-comparing-strings-in-iphone0Don't have the right syntax when comparing strings in iPhoneWes2009-12-21T02:09:02Z2009-12-21T02:14:23Z
<p>I am trying to compare the following values:</p>
<pre><code> gType = [[UILabel alloc]init];
if (gType = [NSString string:@"BUSINESS"]) {
</code></pre>
<p>I get a warning that 'NSString' may not respond to '+string:'</p>
<p>I am unsure what is wrong. gType is a value that I populate from a db query. Other text values from the same query show up fine in a UITableView, so I am pretty confident I have created it properly.</p>
<p>thx,</p>
http://stackoverflow.com/questions/1934303/any-recommendations-for-sqlite-c-orm-code-generation2Any recommendations for Sqlite C# ORM code generationMark Redman2009-12-19T22:28:23Z2009-12-20T15:57:47Z
<p>Hi,</p>
<p>Can anyone recommend an Sqlite C# ORM code generation tool.</p>
<p>I have found the Habanero framework, any comments on that?</p>
<p>Thanks</p>
<p><strong>UPDATE</strong></p>
<p>I have gone with Subsonic in this instance. To help anyone else out, here is a 'basic' example of creating a class and using Subsonic and Sqlite together.</p>
<pre><code>using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SQLite;
using SubSonic;
using SubSonic.Schema;
using SubSonic.Repository;
using SubSonic.DataProviders;
namespace SubsonicSqliteTest
{
public class User
{
public User()
{
ID = Guid.NewGuid();
// Set Defaults
FirstName = String.Empty;
LastName = String.Empty;
Username = String.Empty;
Password = String.Empty;
IsAdministrator = 0;
}
public Guid ID { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string Username { get; set; }
public string Password { get; set; }
public int IsAdministrator { get; set; }
public DateTime? CreatedDate { get; set; }
public DateTime? LastUpdatedDate { get; set; }
public static User Get(Guid id)
{
string databasePath = System.IO.Path.Combine(System.IO.Path.GetDirectoryName(Application.ExecutablePath), "Database.db");
IDataProvider provider = ProviderFactory.GetProvider("Data Source=" + databasePath + ";Version=3;New=True;Pooling=True;Max Pool Size=1;", "System.Data.SQLite");
var repository = new SimpleRepository(provider, SimpleRepositoryOptions.RunMigrations);
var users = from user in repository.All<User>()
where user.ID == id
select user;
foreach (var user in users)
{
return user;
}
return null;
}
public User Save()
{
string databasePath = System.IO.Path.Combine(System.IO.Path.GetDirectoryName(Application.ExecutablePath), "Database.db");
IDataProvider provider = ProviderFactory.GetProvider("Data Source=" + databasePath + ";Version=3;New=True;Pooling=True;Max Pool Size=1;", "System.Data.SQLite");
var repository = new SimpleRepository(provider, SimpleRepositoryOptions.RunMigrations);
repository.Add(this);
return this;
}
}
}
</code></pre>
http://stackoverflow.com/questions/1935791/should-i-worry-about-sqlite-filesize1Should I worry about sqlite filesize?Steve H2009-12-20T13:02:41Z2009-12-20T15:36:56Z
<p>When writing my own flat file databases I try and keep the file sizes as small as possible, when designing mySQL databases I put all my tables into one database (I'm under the belief that mySQL stores each table in it's own file). I'm new to sqlite and my ethics clash - a whole database stored in one file.</p>
<p>I know the recommended size is about 2GB per database for sqlite, and I don't expect to reach that size, but is there any upside to splitting the database? For example splitting a database into two, one with various settings tables (numerous tables, low number of rows), the other with various content tables (few tables, many rows in each).</p>
<p>I have a good understanding of filesystems, and know I shouldn't bother this much about it, but there is a gut feeling I just cannot shake of wanting to separate the database. Is this a feeling to ignore or run with?</p>
http://stackoverflow.com/questions/1208550/how-can-i-create-a-tabular-report-in-sql-when-the-column-names-are-in-the-databas0How can I create a tabular report in SQL when the column names are in the database, not the query?Chris Nelson2009-07-30T18:45:57Z2009-12-20T15:00:10Z
<p><a href="http://www.geocities.com/colinpriley/sql/sqlitepg09.htm" rel="nofollow">http://www.geocities.com/colinpriley/sql/sqlitepg09.htm</a> has a nice technique for creating a tabular report where the column names for the table can be coded in the query but in my case, the columns should be values from the database. Say I have daily sales figures like:</p>
<pre><code> Transaction Date Rep Product Amount
1 July 1 Bob A12 $10
2 July 2 Bob B24 $12
3 July 2 Ted A12 $25
...
</code></pre>
<p>and I want a weekly summary report that shows how much of each product each rep sold:</p>
<pre><code> A12 B24
Bob $10 $12
Ted $25 $0
</code></pre>
<p>My column names come from the Product column. Say, any product that has a row in the specified date range should have a column in the report. But other products -- which weren't sold in that time frame -- should not have a column of all 0s. How can I do that? Bonus points if it works in SQLite.</p>
<p>TIA.</p>
http://stackoverflow.com/questions/1934579/how-remove-the-warning-large-integer-implicitly-truncated-for-sqlite-unicode-su0How remove the warning "large integer implicitly truncated" for sqlite/unicode support?mamcx2009-12-20T00:35:54Z2009-12-20T14:35:30Z
<p>I use the solution of <a href="http://ioannis.mpsounds.net/2007/12/19/sqlite-native-unicode-like-support/" rel="nofollow">http://ioannis.mpsounds.net/2007/12/19/sqlite-native-unicode-like-support/</a> for my POS <a href="http://www.bestsellerapp.com" rel="nofollow">App for the iPhone</a>, and work great.</p>
<p>However, as say in the comments:</p>
<blockquote>
<p>For instance, sqlite_unicode.c line 1861 contains integral constants greater than 0xffff but are declared as unsigned short. I wonder how I should cope with that.</p>
</blockquote>
<p>I'm fixing all the warnings in my project and this is the last one. The code is this:</p>
<pre><code>static unsigned short unicode_unacc_data198[] = { 0x8B8A, 0x8D08, 0x8F38, 0x9072, 0x9199, 0x9276, 0x967C, 0x96E3, 0x9756, 0x97DB, 0x97FF, 0x980B, 0x983B, 0x9B12, 0x9F9C, 0x2284A, 0x22844, 0x233D5, 0x3B9D, 0x4018, 0x4039, 0x25249, 0x25CD0, 0x27ED3, 0x9F43, 0x9F8E, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF };
</code></pre>
<p>I don't know about this hex stuff, so what to do? I don't get a error, not know if this could cause one in the future...</p>
http://stackoverflow.com/questions/1933720/how-do-i-insert-datetime-value-into-a-sqlite-database0How do I insert datetime value into a SQLite database?Brad2009-12-19T18:19:44Z2009-12-19T23:01:20Z
<p>I am trying to insert a datetime value into a <a href="http://en.wikipedia.org/wiki/SQLite" rel="nofollow">SQLite</a> database. It seems to be sucsessful but when I try to retrieve the value there is an error:</p>
<blockquote>
<p><strong><Unable to read data></strong></p>
</blockquote>
<p>The SQL statements are:</p>
<pre><code> create table myTable (name varchar(25), myDate DATETIME)
insert into myTable (name,mydate) Values ('fred','jan 1 2009 13:22:15')
</code></pre>
http://stackoverflow.com/questions/1370584/sqlalchemy-connections-pooling-and-sqlite0SQLAlchemy Connections, pooling, and SQLitedarkblue_b2009-09-02T22:57:29Z2009-12-19T14:00:03Z
<p>so, my design calls for a separate SQLite file for each "project".. I am reading through the SQLAlchemy Pooling docs more carefully.. my guess right now is that I dont want to fool with pooling at all, but this is really a separate connection engine for each project.. Agree??</p>
<p>In that case, when I create the engine, either I connect to a file named by convention, or create a new SQLite file and supply a schema template... ??</p>
http://stackoverflow.com/questions/1932013/how-to-work-with-sqlite-in-wpf1How to work with SQLite in WPFOle Jak2009-12-19T05:02:43Z2009-12-19T05:23:15Z
<p>I havve WPF APP I want to use SQLite How to do such thing?</p>
<p>(BTW I understend how to do such thing in adobe Air but in WPF it's a beeg Question for me so some explanation made on\with comparing how to's is Big +...)</p>
http://stackoverflow.com/questions/1931984/c-and-sqlite-basics0C# and sqlite basicsOle Jak2009-12-19T04:42:55Z2009-12-19T05:05:23Z
<p>How to connect, create DB, use it in VS08 (05 or 10 will be ok)? (Vsualy better not writting lots of code=))
need for
tutorials
libs
blogArticles</p>
http://stackoverflow.com/questions/1931558/fluent-nhibernate-need-multi-program-access-to-a-single-lazy-loaded-sqlite-dat0Fluent NHibernate - need multi-program access to a single, lazy loaded SQLite databaseTom Bushell2009-12-19T00:59:35Z2009-12-19T01:19:16Z
<p>I'm developing a project that has multiple programs that share a single, lazy loaded SQLite database file, using Fluent Nhibernate (Auto Mapping) as the data access layer.</p>
<p>The first program I developed (let's call it Program 1) kept the Session open all the time, and lazy loading worked fine. </p>
<p>This approach failed when I got Program 2 running, and tried to write to the database from Program 2 while Program 1 was running - I got "database locked" exceptions. </p>
<p>I got around this by closing the Session after Program 1 starts up - e.g.</p>
<pre><code> private ISessionFactory _sessionFactory;
private ISession _session;
_sessionFactory = Database.CreateSessionFactory();
_session = _sessionFactory.OpenSession();
_session.BeginTransaction();
// ... read the database here
_session.Close();
</code></pre>
<p>Of course, this broke lazy loading in Program 1 when the user selected a different data data set from the user interface - which I had expected.</p>
<p>I thought I would be able to just open the Session again whenever the user selected new data, and then close it again - e.g. </p>
<pre><code> if ( !_session.IsOpen )
_session = _sessionFactory.OpenSession();
if ( !_session.IsConnected )
_session.Reconnect();
_session.BeginTransaction();
// ... read the database here
_session.Close();
</code></pre>
<p>But so far, have not been able to get this to work. I get "no session, or session was closed" exception when I try to read the data, even though I've just opened a session. (The test for the connection was just an experiment, because the exception trace said something about throwing lazy exceptions when disconnected, but it didn't help)</p>
<p>What am I doing wrong?</p>
http://stackoverflow.com/questions/1931170/unit-testing-android-apps-and-specifically-related-to-dbs1Unit testing Android apps and specifically related to db'sRich2009-12-18T23:01:30Z2009-12-19T00:13:14Z
<p>What is the easiest way to create some kind of test harness for Android apps and to be able to visualize (even on the emulator) what is going into the db? I want to test things like constraints, look at the data, unit test methods, etc.</p>
<p>Is there any kind of GUI tool that I can hook up to the emulator to be able to look at the db of a particular app while I'm developing/testing, or are my only options the adb shell and creating test Activities within my app?</p>
http://stackoverflow.com/questions/1930411/list-enumeration-in-sql2List enumeration in SQL?gsmd2009-12-18T20:08:33Z2009-12-18T20:12:48Z
<p>Say, there are 2 tables:</p>
<pre><code>Person
| id | name |
LanguagesSpoken
| person_id | language_name |
</code></pre>
<p>Is there a way to create a view that would contain 2 columns: <code>person_name</code> and <code>languages_spoken</code> as a comma-separated list?</p>
<p>I'm developing against SQLite.</p>
http://stackoverflow.com/questions/1925178/sqlite-query-using-nested-select0SQLite Query using nested SELECTwilliamrobert2009-12-17T22:57:32Z2009-12-17T23:28:18Z
<p>I'm trying to select cpu_time from the db, but the time must correspond with a few other criteria - i.e. build_version, test_letter, design_index, multi_thread, and test_index</p>
<p>What I thought would work was (the inner <code>SELECT DISTINCT</code> statement works on its own):</p>
<pre><code>set query [db eval \
{SELECT DISTINCT cpu_time WHERE cpu_time IN
(SELECT DISTINCT mgc_version, test_type_letter, design_index,
test_index, cpu_time, multi_thread
FROM TestExecutions WHERE test_type_letter
BETWEEN $testletter AND $testletter)}]
</code></pre>
<p>***Note - this is giving me a "no such column: cpu_time" error</p>
<p>where my first SELECT would pull all items from a distinct return. Then, from each return, I wanted to ONLY use the cpu_time, for each type of $testletter. </p>
<p>This is for generating CSV files that only have the cpu_time. Is it obvious what I'm getting wrong?</p>
<p>Thank you!</p>
http://stackoverflow.com/questions/1923259/full-outer-join-with-sqlite1FULL OUTER JOIN with sqliteYada2009-12-17T17:19:55Z2009-12-17T17:27:55Z
<p>sqlite only have INNER and LEFT JOIN.</p>
<p>Is there a way to do a FULL OUTER JOIN with sqlite?</p>
http://stackoverflow.com/questions/1921886/how-to-update-and-select-a-row-within-one-query-in-sqlite1How to update and select a row within one query in SqLite?mutzel2009-12-17T13:43:39Z2009-12-17T16:36:19Z
<p>I want to update and select one row within one query in SqLite. In MySql my wanted query would look like this:</p>
<pre><code>SET @update_id := -1;
UPDATE data SET `Status` = 'running', Id = (SELECT @update_id := Id)
WHERE `Status` = 'scheduled' LIMIT 1;
SELECT * FROM data WHERE id=@update_id;"
</code></pre>
<p>The above query will set the <em>Status</em> to 'running' and the value of the variable *@update_id* to the <em>Id</em> of the modified row for the first row that is having <em>Status</em> of 'scheduled' and than uses the variable *@update_id* to fetch the complete modified row.</p>
<p><strong>The important point is that I need to select the row that I had been modified by the UPDATE statement</strong></p>
<p>But as far as I know SqLite does not support variables.</p>
<p>How can the MySQL query from above be rewritten for SqLite?</p>
http://stackoverflow.com/questions/1921174/using-flex-to-keep-local-sqlite-database-in-sync-with-live-server-database0Using Flex to keep local SQLite database in sync with live server databaseDaveC2009-12-17T11:39:30Z2009-12-17T13:04:03Z
<p>I want to create a Flex 3 application running in Adobe Air that accesses an SQLite database and I need to keep this database in sync with an SQL server 2005 database running a website.</p>
<p>Is this something that Flex supports or is it going to be a custom script? Also, has anybody done anything like this?</p>
<p>Edit: The synchronisation can be done on a daily basis rather than real time. The data will be read only from a front end perspective with a CMS to do updates on the website.</p>