Thursday, March 11, 2010

[HowTo] Make User Defined Function In SQLite ADO.NET With C#

September 27, 2009 by Ivan  
Filed under Visual Studio.NET

Sometime we want to make user defined function and use it in our query to the database. In Ms. SQL Server and Oracle DBMS support user defined function, stored procedure and transactional. Since SQLite is zero configuration, serverless and single database file, SQLite doesn’t support user defined function (If you don’t know what is [...]

[HowTo] Use SqLite ADO.NET with C#

September 26, 2009 by Ivan  
Filed under Featured Content, Visual Studio.NET

SQLite is software library written in C that implement self-contained (very minimal support from external libraries), serverless (read/write process directly to database file), cross-platform (run in any Operating System), zero-configuration (no setup/installation needed), transactional (implement serializeable transaction) SQL database engine. SQLite is relatively small, approx 275 KB in size and single database file.
For me SQLite [...]

[HowTo] Run ASP.NET on Linux With Apache Web Server (Mono + Mod_Mono)

July 18, 2009 by Ivan  
Filed under Mono

Mono is an open source project led by Novell (formerly by Ximian) to create an Ecma standard compliant, .NET-compatible set of tools, including among others a C# compiler and a Common Language Runtime. Mono can be run on Linux, BSD, UNIX, Mac OS X, Solaris and Windows operating systems.
With Apache mod_mono we can run ASP.NET [...]