You can try up-sizing it to SqlServer.
Yitzchok Dev
Posts
-
A Note To Access Developers [Resolved] -
YACP: Chrome is a Visual Studio projectI think it has over 130 projects. (How long does it take VS to open, compile?) And I think that is a real overkill.
-
YACP: Chrome is a Visual Studio projectYou don't want to know how many projects there are in that solution file :)
-
Interest in an ALT.NET User Group In New York City.For updates please Sign Up at http://groups.google.com/group/nyaltnet[^]
-
Interest in an ALT.NET User Group In New York City.We would like to start a ALT.NET User Group in New York City and would like to know the interest in it. If you don't know what ALT.NET is or are unfamiliar with it then check out http://altdotnet.org/[^]. So if you live in the area please vote if you are interested and would like to "attend" such a meeting (probably on a monthly bases). Vote Here - http://www.polldaddy.com/p/829439/[^] Thank You and I hope to see you there.
-
Good open-source asp.net apps for learning?You can check out dashCommerce[^]
-
Sandcastle is back...Wow that's nice
-
IoC in Medium TrustThanks Pete but it doesn't say anywhere that it works in Medium Trust (I'll test it) Does anyone know if one of these work in Medium Trust Windsor, Ninject, StructureMap (I know Unity works)
-
IoC in Medium TrustDoes anyone know what IoC container works in Medium Trust?
-
NHibernate??You can also try out SubSonic at http://subsonicproject.com/[^]
-
Worderful object namesThis is a nice convention I think I should use it on my next project :wtf:
-
how to pick some records in datagrid -
Need help to convert vb module into c#Try converting it to VB.NET and then to C#
-
Beginner array program, need help!!!using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { string[] zipCodes = new string[10]{"33701","33702","33703","33704","33705", "33706","33707","33708","33709","33710"}; Console.Write("Please enter a zip-code : "); string zipSearch = Console.ReadLine(); bool found = false; foreach (string zip in zipCodes) { if (zip == zipSearch) { found = true; break; } } Console.WriteLine(); if (found) { Console.WriteLine("The zip-code, {0}, is delivered to", zipSearch); } else { Console.WriteLine("The zip-code, {0}, is not delivered to", zipSearch); Console.WriteLine(); Console.WriteLine("The full list is :"); Console.WriteLine(); } Array.Reverse(zipCodes); for (int i = 0; i < zipCodes.Length; i++) { Console.WriteLine(zipCodes[i]); } Console.WriteLine("Press a key to Continue."); Console.ReadLine(); } } }
-
Need help to convert vb module into c# -
IIS Configurationuse WMI - Windows Management Instrumentation http://www.codeproject.com/csharp/wmi.asp
-
Restrict to create the temp filesasp.net has to compile your code to run it (creating dll of your files) and then it can run the app you can try to pre compile your app this might help Please tell me if I am wrong
-
How do I do this in SQLThank you
-
How do I do this in SQLI have these tables Customer Table: CustomerID int; PK FirstName nvarchar; LastNaem nvarchar; etc.; Products Table: ProductID int; PK Name varcahr; etc.; OrderItems Table: OrderItemID int; PK ProductID int; FK CustomerID int; FK etc.; Now I would like to get all users that have ordered: Product1 AND Product2, etc. Only those people that orders all the selected products -- modified at 21:15 Monday 10th September, 2007
-
Random NumberRandom rnd = new Random(); rnd.Next(); one line:)