https://bugzilla.novell.com/show_bug.cgi?id=635335
https://bugzilla.novell.com/show_bug.cgi?id=635335#c2 --- Comment #2 from Denis Lebedenko <[email protected]> 2010-08-28 16:21:27 UTC --- Part of test.cs was cut off when copy-pasting from PuTTY, here it is again: using System.Data.SQLite; class Program { static void Main() { var connectionString = "Data Source=:memory:;Version=3"; var connection = new SQLiteConnection(connectionString); connection.Open(); var command = new SQLiteCommand("CREATE TABLE Test(t int)", connection); command.ExecuteNonQuery(); } } -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
