|
View:
New views
11 Messages
—
Rating Filter:
Alert me
|
|
|
sqlite questions?Is this a good place to ask questions about sqlite? Can somebody please tell me where to go;)
Has everybody (or anybody) worked with monodevelop to put together an asp.net application that uses an sqlite database that they then put into production? hello, hello, hello ... is there anybody out there? _______________________________________________ Mono-aspnet-list mailing list Mono-aspnet-list@... http://lists.ximian.com/mailman/listinfo/mono-aspnet-list |
|
|
Re: sqlite questions?I would suggest you consider using another database altogether. SQLite
is meant to interface with c and c++ programs, neither of which is a language mono supports. Most asp.net applications are developed for Microsoft SQL server or MySQL server depending on where the developer wants the asp.net application to be run. Personally I would suggest MySQL as it has good support for ASP.net features like membership and role providers. Additionally the MySQL server can be run on a range of operating systems such as Windows and Linux. The MySQL libraries that allow .net languages such as C# to easily communicate with the MySQL server are known to work in both Microsoft and Mono environments. As a plus the community version of MySQL can be had for no cost, or if you need business support a commercial version is also available. -Will On Tue, Nov 3, 2009 at 5:01 AM, Dale E. Moore <daleemoore@...> wrote: > Is this a good place to ask questions about sqlite? Can somebody please tell > me where to go;) > > Has everybody (or anybody) worked with monodevelop to put together an > asp.net application that uses an sqlite database that they then put into > production? > > hello, hello, hello ... is there anybody out there? > > _______________________________________________ > Mono-aspnet-list mailing list > Mono-aspnet-list@... > http://lists.ximian.com/mailman/listinfo/mono-aspnet-list > > Mono-aspnet-list mailing list Mono-aspnet-list@... http://lists.ximian.com/mailman/listinfo/mono-aspnet-list |
|
|
Re: sqlite questions?On Tue, 2009-11-03 at 08:35 +0000, william leader wrote:
> I would suggest you consider using another database altogether. SQLite > is meant to interface with c and c++ programs, neither of which is a > language mono supports. [...] I would suggest you do some research before giving advice to other people. A simple Google search for the words "Sqlite mono" (who would have thought of those?) would have been enough. -Gonzalo _______________________________________________ Mono-aspnet-list mailing list Mono-aspnet-list@... http://lists.ximian.com/mailman/listinfo/mono-aspnet-list |
|
|
Re: sqlite questions?I'll just have to chime in here and recommend at least taking a brief look at PostgreSQL as well. I tried it out a while back and haven't gone back to either MS SQL or MySQL since.. You'll have no problems getting Mono code to talk with it either.
On Tue, Nov 3, 2009 at 12:35 AM, william leader <william.leader@...> wrote: I would suggest you consider using another database altogether. SQLite _______________________________________________ Mono-aspnet-list mailing list Mono-aspnet-list@... http://lists.ximian.com/mailman/listinfo/mono-aspnet-list |
|
|
Re: sqlite questions?william leader wrote:
> I would suggest you consider using another database altogether. SQLite > is meant to interface with c and c++ programs, neither of which is a > language mono supports. Most asp.net applications are developed for > Microsoft SQL server or MySQL server depending on where the developer > wants the asp.net application to be run. Personally I would suggest > MySQL as it has good support for ASP.net features like membership and > role providers. Additionally the MySQL server can be run on a range of > operating systems such as Windows and Linux. The MySQL libraries that > allow .net languages such as C# to easily communicate with the MySQL > server are known to work in both Microsoft and Mono environments. As a > plus the community version of MySQL can be had for no cost, or if you > need business support a commercial version is also available. and spreading misinformation. In addition to what Gonzalo pointed out (the google search), there is also a pure C# port of SQLite (http://code.google.com/p/csharp-sqlite/). As for recommending MySQL... I beg to differ - MySQL is not the only and not the best (IMHO) choice out there for .NET developers on any platform. One problem with MySQL provider for .NET is not really technical, but is never the less important - the connector is GPL-ed, so if your plan is to use it for a closed-source application which you want to sell (or even just provide in binary-only form) then you will either need to purchase commercial license from MySQL, open your code or resort to various tricks to circumvent GPL. Much better choice, as somebody else suggested, is PostgreSQL - its .NET driver (Npgsql) is LGPL, has all the features you mentioned (membership, profile, role) and is shipped with Mono. Also, in my personal opinion, PostgreSQL offers much higher quality product (reliability, advanced features, security) than MySQL. marek > > -Will > > On Tue, Nov 3, 2009 at 5:01 AM, Dale E. Moore <daleemoore@...> wrote: >> Is this a good place to ask questions about sqlite? Can somebody please tell >> me where to go;) >> >> Has everybody (or anybody) worked with monodevelop to put together an >> asp.net application that uses an sqlite database that they then put into >> production? >> >> hello, hello, hello ... is there anybody out there? >> >> _______________________________________________ >> Mono-aspnet-list mailing list >> Mono-aspnet-list@... >> http://lists.ximian.com/mailman/listinfo/mono-aspnet-list >> >> > _______________________________________________ > Mono-aspnet-list mailing list > Mono-aspnet-list@... > http://lists.ximian.com/mailman/listinfo/mono-aspnet-list > _______________________________________________ Mono-aspnet-list mailing list Mono-aspnet-list@... http://lists.ximian.com/mailman/listinfo/mono-aspnet-list |
|
|
Re: [Mono-list] sqlite questions?Dale E. Moore wrote:
> Is this a good place to ask questions about sqlite? Can somebody please > tell me where to go;) On SQLite itself - no, in relation to Mono/ASP.NET - yes. > Has everybody (or anybody) worked with monodevelop to put together an > asp.net <http://asp.net> application that uses an sqlite database that > they then put into production? I don't use MonoDevelop, but for a production application which can use SQLite as an option, see BlogEngine.NET. marek _______________________________________________ Mono-aspnet-list mailing list Mono-aspnet-list@... http://lists.ximian.com/mailman/listinfo/mono-aspnet-list |
|
|
Re: [Mono-list] sqlite questions?Hi Dale,
The latest mojoPortal from our svn trunk repository is pre-configured to use SQLite in MonoDevelop using mojoportal.mds solution. I changed the default db configuration from pgsql recently just because its zero configuration, we inlcude a sqlite database and it just works. You can produce a package and deploy it to production including the pre-populated SQLite database. However, whether you would use SQLite for a production site/app depends a lot on the app and how many users it will have. SQLite is very fast but there is only 1 connection whereas pgsql and others have a connection pool. So if the site/app gets a lot of traffic it probably won't stand up well because each request is taking turns with the one connection. So it can work well for a few users but it does not scale real well to heavy web traffic. Hope it helps, Joe On Tue, Nov 3, 2009 at 4:01 AM, Marek Habersack <grendel@...> wrote: > Dale E. Moore wrote: >> Is this a good place to ask questions about sqlite? Can somebody please >> tell me where to go;) > On SQLite itself - no, in relation to Mono/ASP.NET - yes. > >> Has everybody (or anybody) worked with monodevelop to put together an >> asp.net <http://asp.net> application that uses an sqlite database that >> they then put into production? > I don't use MonoDevelop, but for a production application which can use SQLite as an option, see > BlogEngine.NET. > > marek > _______________________________________________ > Mono-aspnet-list mailing list > Mono-aspnet-list@... > http://lists.ximian.com/mailman/listinfo/mono-aspnet-list > -- Joe Audette Software Solutions Architect Source Tree Solutions, LLC PO Box 621861 Charlotte, NC 28262 704.323.8225 joe.audette@... http://www.mojoportal.com http://twitter.com/joeaudette _______________________________________________ Mono-aspnet-list mailing list Mono-aspnet-list@... http://lists.ximian.com/mailman/listinfo/mono-aspnet-list |
|
|
|
|
|
Re: [Mono-list] sqlite questions?I'm using the default asp.net membership provider; which works fine in monodevelop, but; does not find the App_Data/aspnetdb.sqlite database when copied to TEST. I copied the mono connectionString, and membership definition into my web.config but then could never login even from monodevelop.
I'm missing something in the membership setup in web.config, I think. On Tue, Nov 3, 2009 at 8:21 AM, Joe Audette <joe.audette@...> wrote: If you are using mojoPortal then you don't have to worry about this, _______________________________________________ Mono-aspnet-list mailing list Mono-aspnet-list@... http://lists.ximian.com/mailman/listinfo/mono-aspnet-list |
|
|
Re: sqlite questions?On 11/3/2009 1:43 AM, Gonzalo Paniagua Javier wrote:
> On Tue, 2009-11-03 at 08:35 +0000, william leader wrote: >> I would suggest you consider using another database altogether. SQLite >> is meant to interface with c and c++ programs, neither of which is a >> language mono supports. > [...] > > I would suggest you do some research before giving advice to other > people. A simple Google search for the words "Sqlite mono" (who would > have thought of those?) would have been enough. Beyond that, FirebirdSQL has a very mature set of drivers for Mono, as well as feature rich support with NHibernate/Castle ActiveRecord/Fluent etc... There's also PostgreSQL. One bit of caution is that SQLite really won't scale well if there's a single database with many people connecting at once (for writes)... It'll go a little further than say Access/Jet but not nearly as much as a service based rdbms. It may be a decent database for certain implementations, and if you can segment the data into separate DBs it'll scale better under load. -- Michael J. Ryan - http://tracker1.info/ ... FRA #059: Free advice is seldom cheap. _______________________________________________ Mono-aspnet-list mailing list Mono-aspnet-list@... http://lists.ximian.com/mailman/listinfo/mono-aspnet-list |
|
|
Re: sqlite questions?I'm pretty fond of both Postgres as well as Firebird myself.
On 11/3/2009 1:44 AM, Mike Christensen wrote: > I'll just have to chime in here and recommend at least taking a brief > look at PostgreSQL as well. I tried it out a while back and haven't > gone back to either MS SQL or MySQL since.. You'll have no problems > getting Mono code to talk with it either. > > On Tue, Nov 3, 2009 at 12:35 AM, william leader > <william.leader@... <mailto:william.leader@...>> wrote: > > I would suggest you consider using another database altogether. SQLite > is meant to interface with c and c++ programs, neither of which is a > language mono supports. Most asp.net <http://asp.net> applications > are developed for > Microsoft SQL server or MySQL server depending on where the developer > wants the asp.net <http://asp.net> application to be run. Personally > I would suggest > MySQL as it has good support for ASP.net features like membership and > role providers. Additionally the MySQL server can be run on a range of > operating systems such as Windows and Linux. The MySQL libraries that > allow .net languages such as C# to easily communicate with the MySQL > server are known to work in both Microsoft and Mono environments. As a > plus the community version of MySQL can be had for no cost, or if you > need business support a commercial version is also available. > > -Will > > On Tue, Nov 3, 2009 at 5:01 AM, Dale E. Moore <daleemoore@... > <mailto:daleemoore@...>> wrote: > > Is this a good place to ask questions about sqlite? Can somebody > please tell > > me where to go;) > > > > Has everybody (or anybody) worked with monodevelop to put together an > > asp.net <http://asp.net> application that uses an sqlite database > that they then put into > > production? > > > > hello, hello, hello ... is there anybody out there? > > > > _______________________________________________ > > Mono-aspnet-list mailing list > > Mono-aspnet-list@... > <mailto:Mono-aspnet-list@...> > > http://lists.ximian.com/mailman/listinfo/mono-aspnet-list > > > > > _______________________________________________ > Mono-aspnet-list mailing list > Mono-aspnet-list@... > <mailto:Mono-aspnet-list@...> > http://lists.ximian.com/mailman/listinfo/mono-aspnet-list > > > > ------------------------------------------------------------------------ > > _______________________________________________ > Mono-aspnet-list mailing list > Mono-aspnet-list@... > http://lists.ximian.com/mailman/listinfo/mono-aspnet-list -- Michael J. Ryan - http://tracker1.info/ ... FRA #211: Employees are rungs on the ladder of success. Don't hesitate to step on them. _______________________________________________ Mono-aspnet-list mailing list Mono-aspnet-list@... http://lists.ximian.com/mailman/listinfo/mono-aspnet-list |
| Free embeddable forum powered by Nabble | Forum Help |