[Mono-bugs] [Bug 635335] Missing method System.Data.Common.DbConnection::EnlistTransaction(Transaction) when using a .NET 2.0 library and compiling with dmcs
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Sat Aug 28 12:21:28 EDT 2010
https://bugzilla.novell.com/show_bug.cgi?id=635335
https://bugzilla.novell.com/show_bug.cgi?id=635335#c2
--- Comment #2 from Denis Lebedenko <denisv at post.skynet.lt> 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.
More information about the mono-bugs
mailing list