User YordanGeorgiev - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T10:55:51Zhttp://stackoverflow.com/feeds/user/65706http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/831290/what-pitfalls-to-expect-from-generation-of-classes-from-database-tables-using-ref0What pitfalls to expect from generation of classes from database tables using Reflection.Emit and xsd files ?!YordanGeorgiev2009-05-06T19:26:35Z2009-09-02T03:13:22Z
<p>I am playing with class generation ( one class for a table - inheritance etc. not to be considered for now ... ). So I copied shamelessly from <a href="http://codebetter.com/blogs/david.hayden/archive/2006/02/05/137569.aspx" rel="nofollow">here</a> the Reflection.Emit code. Reworked it to be generated per table in a given database and created the files with the following batch call in the Project's bin folder :
for /f "tokens=*" %%i in ('dir *.xsd /b') do "C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin\xsd.exe" -c -l:c# -n:BusinessObjects %i </p>
<p>So far so good. The idea is each time when a new db version arrives to regenerate the classes and copy them in the "real project" ( I do not need any run-time generation ) and also would like to enjoy Intellisense. What pitfalls , difficulties and problems might arrise from this type of approach, any better suggestions for those loosely described requirements ?!</p>
<p>Here is the Generation code of the console app creating the assemblies : </p>
<pre><code> using System;
using System.Collections.Generic;
using System.Text;
using log4net;
using log4net.Config;
using System.Data;
using System.Data.SqlClient;
using System.Threading;
using System.Reflection;
using System.Reflection.Emit;
namespace GenerateAssemblies
{
class Program
{
private static readonly ILog logger =
LogManager.GetLogger ( typeof ( Program ) );
static void Main ( string[] args )
{
DOMConfigurator.Configure(); //tis configures the logger
logger.Debug ( "APP START" );
DataTable dtTables = Program.GetTablesFromDb ( "POC" ) ;
foreach (DataRow dr in dtTables.Rows)
{
string strTableName = dr[0].ToString () ;
CodeEmitGeneratingAssemblies.DllGenerator.WriteXmlAndTxtFileOutOfDataTableByName ( strTableName);
CodeEmitGeneratingAssemblies.DllGenerator.CreateAssembly ( strTableName );
}
Console.WriteLine ( " Should have now all the dll's " );
Console.ReadLine ();
} //eof method
static DataTable GetTablesFromDb ( string strDbName )
{
DataTable dt = new DataTable ( "tables" );
string connectionString = "Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=" + strDbName + ";Data Source=ysg";
using (SqlConnection connection = new SqlConnection ( connectionString ))
{
SqlCommand command = connection.CreateCommand ();
command.CommandText = string.Format ( "SELECT name from sys.tables" );
connection.Open ();
dt.Load ( command.ExecuteReader ( CommandBehavior.CloseConnection ) );
}
return dt;
} //eof method
} //eof class
namespace CodeEmitGeneratingAssemblies
{
public class DllGenerator
{
private static readonly ILog logger =
LogManager.GetLogger ( typeof ( DllGenerator ) );
public static void WriteXmlAndTxtFileOutOfDataTableByName (string strDataTableName)
{
DOMConfigurator.Configure (); //tis configures the logger
DataTable tableData = new DataTable ( strDataTableName );
string connectionString = "Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=POC;Data Source=ysg";
using (SqlConnection connection = new SqlConnection ( connectionString ))
{
SqlCommand command = connection.CreateCommand ();
command.CommandText = string.Format ( "SELECT * FROM [" + strDataTableName + "]");
logger.Debug ( "command.CommandText is " + command.CommandText );
connection.Open ();
tableData.Load ( command.ExecuteReader ( CommandBehavior.CloseConnection ) );
}
tableData.WriteXml ( strDataTableName + ".xml" );
tableData.WriteXmlSchema ( strDataTableName + ".xsd" );
} //eof method
public static void CreateAssembly ( string strDataTableName )
{
AppDomain currentDomain = Thread.GetDomain ();
AssemblyName myAssemblyName = new AssemblyName ( );
myAssemblyName.Name = strDataTableName;
AssemblyBuilder builder = currentDomain.DefineDynamicAssembly (
myAssemblyName,
AssemblyBuilderAccess.RunAndSave );
builder.AddResourceFile ( "TableXml", strDataTableName + ".xml" );
builder.AddResourceFile ( "TableXsd", strDataTableName + ".xsd" );
builder.Save ( strDataTableName + ".dll" );
}
} //eof class
} //eof namespace
} //eof namespace
</code></pre>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/543052#5430520Answer by YordanGeorgiev for Hidden Features of SQL ServerYordanGeorgiev2009-02-12T20:18:12Z2009-09-01T18:29:16Z<pre><code>use db
go
select o.name
, (SELECT [definition] AS [text()]
FROM sys.all_sql_modules
WHERE sys.all_sql_modules.object_id=a.object_id
FOR XML PATH(''), TYPE
) AS Statement_Text
, a.object_id
, o.modify_date
FROM sys.all_sql_modules a
LEFT JOIN sys.objects o ON a.object_id=o.object_id
ORDER BY 4 desc
--select * from sys.objects
</code></pre>
http://stackoverflow.com/questions/1279392/run-custom-tool-has-disappeared-from-context-menu-in-vs2008-professional/1282699#12826992Answer by YordanGeorgiev for "Run Custom Tool" has disappeared from context menu in VS2008 ProfessionalYordanGeorgiev2009-08-15T19:52:59Z2009-08-15T19:52:59Z<p>If your project is a Website rather than a Web Application Project t4 won't work and you won't see 'Run Custom Tool' in the right click menu ..</p>
http://stackoverflow.com/questions/275836/multiple-colors-in-a-c-net-label/1102748#11027480Answer by YordanGeorgiev for Multiple colors in a C# .NET labelYordanGeorgiev2009-07-09T09:18:23Z2009-07-09T09:18:23Z<p>Slightly off topic ... You could check also: </p>
<ul>
<li><a href="http://ysgitdiary.blogspot.com/2009/07/how-to-generate-html-color-table-with.html" rel="nofollow">generate html color table</a> </li>
<li><a href="http://ysgitdiary.blogspot.com/2009/07/how-to-create-html-color-table-in-sql.html" rel="nofollow">model colors in sql</a> </li>
<li><a href="http://ysgitdiary.blogspot.com/2009/07/how-to-create-html-color-table-part-2.html" rel="nofollow">the result</a> </li>
</ul>
http://stackoverflow.com/questions/1066730/make-gridview-interact-with-something-other-than-properties/1068591#10685910Answer by YordanGeorgiev for Make Gridview interact with something other than propertiesYordanGeorgiev2009-07-01T11:25:08Z2009-07-01T11:25:08Z<p>Hi , </p>
<p>What you need is totally <a href="http://www.codeproject.com/KB/grid/SortablePageableGridView.aspx" rel="nofollow">dynamic GridView</a>. I quess you would have to extend it with the controls ( functionalities ) in your description</p>
http://stackoverflow.com/questions/79669/how-best-to-copy-entire-databases-in-ms-sql-server/1064956#10649560Answer by YordanGeorgiev for How best to copy entire databases in MS SQL Server?YordanGeorgiev2009-06-30T17:31:37Z2009-06-30T17:58:33Z<p>Check those links:</p>
<ul>
<li><a href="http://ysgitdiary.blogspot.com/2009/06/backup-sql-server-2005-2008-databases.html" rel="nofollow">For multiple db's backup</a></li>
<li><a href="http://ysgitdiary.blogspot.com/2009/06/restore-db-from-file-on-sql-server-2005.html" rel="nofollow">and single db restore</a></li>
</ul>
http://stackoverflow.com/questions/938401/net-debug-log/1061998#10619980Answer by YordanGeorgiev for .NET Debug logYordanGeorgiev2009-06-30T06:15:58Z2009-06-30T06:15:58Z<p>Check the following links: </p>
<ul>
<li><a href="http://ysgitdiary.blogspot.com/2009/04/example-console-application-in-c-ready.html" rel="nofollow">Example C# console app with log4net + config</a></li>
<li><a href="http://ysgitdiary.blogspot.com/2009/04/log4net-example-console-app.html" rel="nofollow">asp.net log4net example config</a></li>
<li><a href="http://ysgitdiary.blogspot.com/2009/04/log4net-example-console-program.html" rel="nofollow">Log4net example console program</a></li>
<li><a href="http://ysgitdiary.blogspot.com/2009/06/effective-debugging-in-aspnet.html" rel="nofollow">Debuggin approach for asp.net</a></li>
</ul>
http://stackoverflow.com/questions/336721/debugging-a-user-control-from-asp-net/1061985#10619850Answer by YordanGeorgiev for Debugging a User Control from ASP.NETYordanGeorgiev2009-06-30T06:10:22Z2009-06-30T06:10:22Z<p>Check this <a href="http://www.codeproject.com/KB/aspnet/EffectiveAsp%5FNetDebugging.aspx" rel="nofollow">link</a></p>
http://stackoverflow.com/questions/739635/which-are-your-asp-net-c-debugging-wrappers-1Which are your asp.net C# debugging wrappersYordanGeorgiev2009-04-11T06:44:28Z2009-06-30T06:09:10Z
<p>Did not receive any exact answer, thus I would have to accept mine ... See code bellow</p>
http://stackoverflow.com/questions/739635/which-are-your-asp-net-c-debugging-wrappers/739883#7398830Answer by YordanGeorgiev for Which are your asp.net C# debugging wrappersYordanGeorgiev2009-04-11T11:13:31Z2009-06-30T06:09:10Z<pre><code>using System;
using System.Text.RegularExpressions;
using System.Data;
using System.Collections.Specialized;
using System.Text;
namespace YourDebug.Name.Space
{
/// <summary>
///Debugs passed objects and returns ready formatted html with the objects values
/// </summary>
public class HtmlDebugger
{
public static string DumpDataSet(string msg, DataSet ds)
{
StringBuilder sb = new StringBuilder();
sb.Append("<p> START " + msg + "</p>");
if (ds == null)
return msg + " null ds passed ";
if (ds.Tables == null || ds.Tables.Count == 0)
return msg + " no tables in ds ";
sb.Append("<p> DEBUG START --- " + msg + "</p>");
foreach (System.Data.DataTable dt in ds.Tables)
{
sb.Append("================= My TableName is " +
dt.TableName + " ========================= START");
sb.Append("<table>\n");
int colNumberInRow = 0;
foreach (System.Data.DataColumn dc in dt.Columns)
{
sb.Append(" <th> ");
sb.Append(" |" + colNumberInRow + "| ");
sb.Append(dc.ColumnName + " </th> ");
colNumberInRow++;
} //eof foreach (DataColumn dc in dt.Columns)
int rowNum = 0;
foreach (System.Data.DataRow dr in dt.Rows)
{
string strBackGround = String.Empty;
if (rowNum% 2 == 0)
strBackGround = " bgcolor=\"#D2D2D2\" ";
sb.Append("\n " + rowNum + "<tr " + strBackGround + " >");
int colNumber = 0;
foreach (System.Data.DataColumn dc in dt.Columns)
{
sb.Append("<td> |" + colNumber + "| ");
sb.Append(dr[dc].ToString() + " </td>");
colNumber++;
} //eof foreach (DataColumn dc in dt.Columns)
rowNum++;
sb.Append("</tr>");
} //eof foreach (DataRow dr in dt.Rows)
sb.Append(" \n");
sb.Append("</table>");
} //eof foreach (DataTable dt in sb.Append.Tables)
sb.Append("<p> DEBUG END--- " + msg + "</p>");
return sb.ToString();
}//eof method
public static string DumpMsgList(string msg,
System.Collections.Generic.List<GenApp.Dh.Msg> listMsgs)
{
System.Text.StringBuilder echo = new System.Text.StringBuilder();
if (listMsgs == null)
return "null listMsgs passed for debugging ";
if (listMsgs.Count == 0)
return "listMsgs.Count == 0";
echo.Append("<table>");
for (int msgCounter = 0; msgCounter < listMsgs.Count; msgCounter++)
{
GenApp.Dh.Msg objMsg = listMsgs[msgCounter];
string strBackGround = String.Empty;
if (msgCounter % 2 == 0)
strBackGround = " bgcolor=\"#D2D2D2\" ";
echo.Append("<tr" + strBackGround + ">");
echo.Append("<td>msg.MsgKey</td> <td> " + objMsg.MsgKey + "</td>");
echo.Append("<td>msg.MsgId</td><td>" + objMsg.MsgId + "</td>");
echo.Append("</tr>");
} //eof foreach
echo.Append("</table>");
return echo.ToString();
} //eof method
public static string DumpIDataReader(string msg, IDataReader rdr)
{
StringBuilder sb = new StringBuilder();
if (rdr == null)
return " <p> IDataReader rds is null </p>";
sb.Append("DEBUG START ---" + msg);
sb.Append("<table>");
int counter = 0;
while (rdr.Read() )
{
string strBackGround = String.Empty;
if (counter % 2 == 0)
strBackGround = " bgcolor=\"#3EBDE8\" ";
sb.Append("<tr" + strBackGround + ">");
for (int i = 0; i < rdr.FieldCount; i++)
{
sb.Append("<td>");
sb.Append(rdr[i].ToString() + " ");
sb.Append("<td>");
} //eof for
sb.Append("</br>");
sb.Append("</tr>");
counter++;
}
sb.Append("<table>");
sb.Append("DEBUG END ---" + msg);
return sb.ToString();
} //eof method
public static string DumpListDictionary(string msg ,
ListDictionary list)
{
if (list == null)
return "<p> null list passed </p>";
if (list.Count == 0)
return "<p> list.Count = 0 </p> ";
System.Text.StringBuilder sb = new System.Text.StringBuilder();
sb.Append("<p> START DUMP " + msg + " </p>");
sb.Append("<table>");
int counter = 0;
foreach (object key in list.Keys)
{
string strBackGround = String.Empty;
if (counter % 2 == 0)
strBackGround = " bgcolor=\"#D2D2D2\" ";
sb.Append("<tr" + strBackGround + "><td> key - </td><td> " +
key.ToString());
sb.Append("</td><td>===</td><td>value - </td><td> " + list[key] +
"</td></br></tr>");
counter++;
} //eof foreach
sb.Append("</table>");
sb.Append("<p> END DUMP " + msg + " </p>");
return sb.ToString();
} //eof method
} //eof class
</code></pre>
<p>} //eof namespace </p>
http://stackoverflow.com/questions/809015/subsonic-generate-enums-from-lookup-tables/1048891#10488910Answer by YordanGeorgiev for SubSonic 'Generate Enums from Lookup Tables'YordanGeorgiev2009-06-26T12:32:01Z2009-06-26T12:32:01Z<p>recheck the <a href="http://code.google.com/p/subsonicproject/issues/detail?id=81" rel="nofollow">link</a></p>
http://stackoverflow.com/questions/725043/dynamic-enum-in-c/887853#8878530Answer by YordanGeorgiev for dynamic enum in C#YordanGeorgiev2009-05-20T13:20:56Z2009-06-24T18:33:20Z<p>Just showing the <a href="http://stackoverflow.com/questions/725043/dynamic-enum-in-c/887853#887853">answer</a> of Pandincus with "of the shelf" code and some explanation:
You need two solutions for this example ( I know it could be done via one also ; ), let the advanced students present it ...
So here is the DDL SQL for the table : </p>
<pre><code>USE [ocms_dev]
GO
CREATE TABLE [dbo].[Role](
[RoleId] [int] IDENTITY(1,1) NOT NULL,
[RoleName] [varchar](50) NULL
) ON [PRIMARY]
</code></pre>
<p>So here is the console program producing the dll: </p>
<pre><code>using System;
using System.Collections.Generic;
using System.Text;
using System.Reflection;
using System.Reflection.Emit;
using System.Data.Common;
using System.Data;
using System.Data.SqlClient;
namespace DynamicEnums
{
class EnumCreator
{
//after running for first time rename this method to Main1
static void Main ()
{
string strAssemblyName = "MyEnums";
bool flagFileExists = System.IO.File.Exists
( AppDomain.CurrentDomain.SetupInformation.ApplicationBase + strAssemblyName + ".dll" );
// Get the current application domain for the current thread
AppDomain currentDomain = AppDomain.CurrentDomain;
// Create a dynamic assembly in the current application domain,
// and allow it to be executed and saved to disk.
AssemblyName name = new AssemblyName ( strAssemblyName );
AssemblyBuilder assemblyBuilder = currentDomain.DefineDynamicAssembly ( name,
AssemblyBuilderAccess.RunAndSave );
// Define a dynamic module in "MyEnums" assembly.
// For a single-module assembly, the module has the same name as the assembly.
ModuleBuilder moduleBuilder = assemblyBuilder.DefineDynamicModule ( name.Name,
name.Name + ".dll" );
// Define a public enumeration with the name "MyEnum" and an underlying type of Integer.
EnumBuilder myEnum = moduleBuilder.DefineEnum ( "EnumeratedTypes.MyEnum",
TypeAttributes.Public, typeof ( int ) );
#region GetTheDataFromTheDatabase
DataTable tableData = new DataTable ( "enumSourceDataTable" );
string connectionString = "Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=ocms_dev;Data Source=ysg";
using (SqlConnection connection = new SqlConnection ( connectionString ))
{
SqlCommand command = connection.CreateCommand ();
command.CommandText = string.Format ( "SELECT [RoleId],[RoleName] FROM [ocms_dev].[dbo].[Role]" );
Console.WriteLine ( "command.CommandText is " + command.CommandText );
connection.Open ();
tableData.Load ( command.ExecuteReader ( CommandBehavior.CloseConnection ) );
} //eof using
foreach (DataRow dr in tableData.Rows)
{
myEnum.DefineLiteral ( dr[1].ToString (), Convert.ToInt32 ( dr[0].ToString () ) );
}
#endregion GetTheDataFromTheDatabase
// Create the enum
myEnum.CreateType ();
// Finally, save the assembly
assemblyBuilder.Save ( name.Name + ".dll" );
} //eof Main
} //eof Program
} //eof namespace
</code></pre>
<p>Here is the Console programming printing the output ( remember that it has to reference the dll. Let the advance students present the solution for combining everything in one solution with dynamic loading and checking if there is already build dll. </p>
<pre><code> //add the reference to the newly generated dll
use MyEnums ;
class Program
{
static void Main ()
{
Array values = Enum.GetValues ( typeof ( EnumeratedTypes.MyEnum ) );
foreach (EnumeratedTypes.MyEnum val in values)
{
Console.WriteLine ( String.Format ( "{0}: {1}", Enum.GetName ( typeof ( EnumeratedTypes.MyEnum ), val ), val ) );
}
Console.WriteLine ( "Hit enter to exit " );
Console.ReadLine ();
} //eof Main
} //eof Program
</code></prehttp://stackoverflow.com/questions/181697/multiple-languages-in-one-database-sql-server-2005/1034191#10341910Answer by YordanGeorgiev for Multiple languages in one database - SQL Server 2005YordanGeorgiev2009-06-23T18:09:10Z2009-06-23T18:09:10Z<p>--some thoughts</p>
<pre><code> USE [db]
GO
/****** Object: Table [dbo].[CultureInfo] Script Date: 06/23/2009 21:07:38 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[CultureInfo](
[CultureInfoId] [int] IDENTITY(1,1) NOT NULL,
[CultureName] [varchar](10) NOT NULL,
[DisplayName] [varchar](50) NULL,
[ISO_639x_Value] [nchar](6) NULL,
[CultureCode] [nvarchar](10) NULL,
[CollationName] [varchar](50) NULL,
CONSTRAINT [PK_CultureInfo] PRIMARY KEY CLUSTERED
(
[CultureInfoId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
SET ANSI_PADDING ON
GO
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('af-ZA' , 'Afrikaans - South Africa' , '0x0436' , 'AFK' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('sq-AL' , 'Albanian - Albania' , '0x041C' , 'SQI' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('ar-DZ' , 'Arabic - Algeria' , '0x1401' , 'ARG' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('ar-BH' , 'Arabic - Bahrain' , '0x3C01' , 'ARH' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('ar-EG' , 'Arabic - Egypt' , '0x0C01' , 'ARE' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('ar-IQ' , 'Arabic - Iraq' , '0x0801' , 'ARI' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('ar-JO' , 'Arabic - Jordan' , '0x2C01' , 'ARJ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('ar-KW' , 'Arabic - Kuwait' , '0x3401' , 'ARK' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('ar-LB' , 'Arabic - Lebanon' , '0x3001' , 'ARB' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('ar-LY' , 'Arabic - Libya' , '0x1001' , 'ARL' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('ar-MA' , 'Arabic - Morocco' , '0x1801' , 'ARM' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('ar-OM' , 'Arabic - Oman' , '0x2001' , 'ARO' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('ar-QA' , 'Arabic - Qatar' , '0x4001' , 'ARQ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('ar-SA' , 'Arabic - Saudi Arabia' , '0x0401' , 'ARA' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('ar-SY' , 'Arabic - Syria' , '0x2801' , 'ARS' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('ar-TN' , 'Arabic - Tunisia' , '0x1C01' , 'ART' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('ar-AE' , 'Arabic - United Arab Emirates' , '0x3801' , 'ARU' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('ar-YE' , 'Arabic - Yemen' , '0x2401' , 'ARY' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('hy-AM' , 'Armenian - Armenia' , '0x042B' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('Cy-az-AZ' , 'Azeri (Cyrillic) - Azerbaijan' , '0x082C' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('Lt-az-AZ' , 'Azeri (Latin) - Azerbaijan' , '0x042C' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('eu-ES' , 'Basque - Basque' , '0x042D' , 'EUQ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('be-BY' , 'Belarusian - Belarus' , '0x0423' , 'BEL' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('bg-BG' , 'Bulgarian - Bulgaria' , '0x0402' , 'BGR' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('ca-ES' , 'Catalan - Catalan' , '0x0403' , 'CAT' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('zh-CN' , 'Chinese - China' , '0x0804' , 'CHS' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('zh-HK' , 'Chinese - Hong Kong SAR' , '0x0C04' , 'ZHH' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('zh-MO' , 'Chinese - Macau SAR' , '0x1404' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('zh-SG' , 'Chinese - Singapore' , '0x1004' , 'ZHI' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('zh-TW' , 'Chinese - Taiwan' , '0x0404' , 'CHT' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('zh-CHS' , 'Chinese (Simplified)' , '0x0004' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('zh-CHT' , 'Chinese (Traditional)' , '0x7C04' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('hr-HR' , 'Croatian - Croatia' , '0x041A' , 'HRV' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('cs-CZ' , 'Czech - Czech Republic' , '0x0405' , 'CSY' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('da-DK' , 'Danish - Denmark' , '0x0406' , 'DAN' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('div-MV' , 'Dhivehi - Maldives' , '0x0465' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('nl-BE' , 'Dutch - Belgium' , '0x0813' , 'NLB' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('nl-NL' , 'Dutch - The Netherlands' , '0x0413' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('en-AU' , 'English - Australia' , '0x0C09' , 'ENA' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('en-BZ' , 'English - Belize' , '0x2809' , 'ENL' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('en-CA' , 'English - Canada' , '0x1009' , 'ENC' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('en-CB' , 'English - Caribbean' , '0x2409' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('en-IE' , 'English - Ireland' , '0x1809' , 'ENI' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('en-JM' , 'English - Jamaica' , '0x2009' , 'ENJ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('en-NZ' , 'English - New Zealand' , '0x1409' , 'ENZ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('en-PH' , 'English - Philippines' , '0x3409' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('en-ZA' , 'English - South Africa' , '0x1C09' , 'ENS' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('en-TT' , 'English - Trinidad and Tobago' , '0x2C09' , 'ENT' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('en-GB' , 'English - United Kingdom' , '0x0809' , 'ENG' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('en-US' , 'English - United States' , '0x0409' , 'ENU' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('en-ZW' , 'English - Zimbabwe' , '0x3009' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('et-EE' , 'Estonian - Estonia' , '0x0425' , 'ETI' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('fo-FO' , 'Faroese - Faroe Islands' , '0x0438' , 'FOS' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('fa-IR' , 'Farsi - Iran' , '0x0429' , 'FAR' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('fi-FI' , 'Finnish - Finland' , '0x040B' , 'FIN' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('fr-BE' , 'French - Belgium' , '0x080C' , 'FRB' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('fr-CA' , 'French - Canada' , '0x0C0C' , 'FRC' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('fr-FR' , 'French - France' , '0x040C' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('fr-LU' , 'French - Luxembourg' , '0x140C' , 'FRL' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('fr-MC' , 'French - Monaco' , '0x180C' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('fr-CH' , 'French - Switzerland' , '0x100C' , 'FRS' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('gl-ES' , 'Galician - Galician' , '0x0456' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('ka-GE' , 'Georgian - Georgia' , '0x0437' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('de-AT' , 'German - Austria' , '0x0C07' , 'DEA' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('de-DE' , 'German - Germany' , '0x0407' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('de-LI' , 'German - Liechtenstein' , '0x1407' , 'DEC' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('de-LU' , 'German - Luxembourg' , '0x1007' , 'DEL' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('de-CH' , 'German - Switzerland' , '0x0807' , 'DES' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('el-GR' , 'Greek - Greece' , '0x0408' , 'ELL' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('gu-IN' , 'Gujarati - India' , '0x0447' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('he-IL' , 'Hebrew - Israel' , '0x040D' , 'HEB' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('hi-IN' , 'Hindi - India' , '0x0439' , 'HIN' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('hu-HU' , 'Hungarian - Hungary' , '0x040E' , 'HUN' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('is-IS' , 'Icelandic - Iceland' , '0x040F' , 'ISL' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('id-ID' , 'Indonesian - Indonesia' , '0x0421' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('it-IT' , 'Italian - Italy' , '0x0410' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('it-CH' , 'Italian - Switzerland' , '0x0810' , 'ITS' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('ja-JP' , 'Japanese - Japan' , '0x0411' , 'JPN' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('kn-IN' , 'Kannada - India' , '0x044B' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('kk-KZ' , 'Kazakh - Kazakhstan' , '0x043F' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('kok-IN' , 'Konkani - India' , '0x0457' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('ko-KR' , 'Korean - Korea' , '0x0412' , 'KOR' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('ky-KZ' , 'Kyrgyz - Kazakhstan' , '0x0440' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('lv-LV' , 'Latvian - Latvia' , '0x0426' , 'LVI' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('lt-LT' , 'Lithuanian - Lithuania' , '0x0427' , 'LTH' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('mk-MK' , 'Macedonian (FYROM)' , '0x042F' , 'MKD' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('ms-BN' , 'Malay - Brunei' , '0x083E' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('ms-MY' , 'Malay - Malaysia' , '0x043E' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('mr-IN' , 'Marathi - India' , '0x044E' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('mn-MN' , 'Mongolian - Mongolia' , '0x0450' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('nb-NO' , 'Norwegian (Bokmål) - Norway' , '0x0414' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('nn-NO' , 'Norwegian (Nynorsk) - Norway' , '0x0814' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('pl-PL' , 'Polish - Poland' , '0x0415' , 'PLK' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('pt-BR' , 'Portuguese - Brazil' , '0x0416' , 'PTB' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('pt-PT' , 'Portuguese - Portugal' , '0x0816' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('pa-IN' , 'Punjabi - India' , '0x0446' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('ro-RO' , 'Romanian - Romania' , '0x0418' , 'ROM' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('ru-RU' , 'Russian - Russia' , '0x0419' , 'RUS' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('sa-IN' , 'Sanskrit - India' , '0x044F' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('Cy-sr-SP' , 'Serbian (Cyrillic) - Serbia' , '0x0C1A' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('Lt-sr-SP' , 'Serbian (Latin) - Serbia' , '0x081A' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('sk-SK' , 'Slovak - Slovakia' , '0x041B' , 'SKY' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('sl-SI' , 'Slovenian - Slovenia' , '0x0424' , 'SLV' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('es-AR' , 'Spanish - Argentina' , '0x2C0A' , 'ESS' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('es-BO' , 'Spanish - Bolivia' , '0x400A' , 'ESB' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('es-CL' , 'Spanish - Chile' , '0x340A' , 'ESL' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('es-CO' , 'Spanish - Colombia' , '0x240A' , 'ESO' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('es-CR' , 'Spanish - Costa Rica' , '0x140A' , 'ESC' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('es-DO' , 'Spanish - Dominican Republic' , '0x1C0A' , 'ESD' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('es-EC' , 'Spanish - Ecuador' , '0x300A' , 'ESF' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('es-SV' , 'Spanish - El Salvador' , '0x440A' , 'ESE' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('es-GT' , 'Spanish - Guatemala' , '0x100A' , 'ESG' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('es-HN' , 'Spanish - Honduras' , '0x480A' , 'ESH' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('es-MX' , 'Spanish - Mexico' , '0x080A' , 'ESM' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('es-NI' , 'Spanish - Nicaragua' , '0x4C0A' , 'ESI' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('es-PA' , 'Spanish - Panama' , '0x180A' , 'ESA' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('es-PY' , 'Spanish - Paraguay' , '0x3C0A' , 'ESZ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('es-PE' , 'Spanish - Peru' , '0x280A' , 'ESR' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('es-PR' , 'Spanish - Puerto Rico' , '0x500A' , 'ES' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('es-ES' , 'Spanish - Spain' , '0x0C0A' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('es-UY' , 'Spanish - Uruguay' , '0x380A' , 'ESY' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('es-VE' , 'Spanish - Venezuela' , '0x200A' , 'ESV' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('sw-KE' , 'Swahili - Kenya' , '0x0441' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('sv-FI' , 'Swedish - Finland' , '0x081D' , 'SVF' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('sv-SE' , 'Swedish - Sweden' , '0x041D' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('syr-SY' , 'Syriac - Syria' , '0x045A' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('ta-IN' , 'Tamil - India' , '0x0449' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('tt-RU' , 'Tatar - Russia' , '0x0444' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('te-IN' , 'Telugu - India' , '0x044A' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('th-TH' , 'Thai - Thailand' , '0x041E' , 'THA' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('tr-TR' , 'Turkish - Turkey' , '0x041F' , 'TRK' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('uk-UA' , 'Ukrainian - Ukraine' , '0x0422' , 'UKR' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('ur-PK' , 'Urdu - Pakistan' , '0x0420' , 'URD' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('Cy-uz-UZ' , 'Uzbek (Cyrillic) - Uzbekistan' , '0x0843' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('Lt-uz-UZ' , 'Uzbek (Latin) - Uzbekistan' , '0x0443' , ' ' )
insert into CultureInfo (CultureName , DisplayName , ISO_639x_Value , CultureCode ) values ('vi-VN' , 'Vietnamese - Vietnam' , '0x042A' , 'VIT' )
</code></pre>
http://stackoverflow.com/questions/805922/are-resx-files-suitable-for-internationalization/1033970#10339700Answer by YordanGeorgiev for Are resx files suitable for Internationalization?YordanGeorgiev2009-06-23T17:24:15Z2009-06-23T17:24:15Z<p>Check Rick Strahl's <a href="http://www.west-wind.com/presentations/wwDbResourceProvider/" rel="nofollow">resource provider</a></p>
http://stackoverflow.com/questions/601544/how-translate-commercial-software-in-multi-languages/1033942#10339420Answer by YordanGeorgiev for How translate commercial software in multi languages?YordanGeorgiev2009-06-23T17:18:57Z2009-06-23T17:18:57Z<p>Implement a "Translator" role in your application and give him simple interface to translate the words and msgs. If possible give him also the possibility to try the software (some of the msgs do need adjustment according to the context of the use case even the text is translated literally correctly</p>
http://stackoverflow.com/questions/1011712/what-are-your-tips-for-keeping-track-and-avoiding-bugs-in-loops1What are your tips for keeping track and avoiding bugs in loops ?YordanGeorgiev2009-06-18T09:25:45Z2009-06-18T21:35:12Z
<p>I just found ... AGAIN ... a real time wastage bug as follows</p>
<pre><code>for (int i = 0; i < length; i++)
{ //...Lots of code
for (int j = 0; i < length; j++)
{
//...Lots of code
}
}
</code></pre>
<p>Did you notice straight ahead the inner i which SHOULD BE j ? Neither did I. So from now on I am going to use: </p>
<pre><code>for (int i = 0; i < length; i++)
{
for (int i1 = 0; i1 < length; i1++)
{
}
}
</code></pre>
<p>What are your tips for inner and outer while and for loops ?</p>
<p>Edit: Thanks for the valuable responses. Herewith short summary of the proposed tips:</p>
<ul>
<li>use meaningful variables names for index variables ( instead i use SomeObjCollectionLength )</li>
<li>place the contents of the inner loop into a separate method and call that method from the outer loop </li>
<li>not manageable amount of lines of code between the outer and inner loop is a strong signal for code smell</li>
<li>avoid copy pasting and rushing , write the index vars with care </li>
</ul>
<p>You might want to check the summary by <a href="http://stackoverflow.com/users/91671/lbushkin">LBushkin</a> for the <a href="http://stackoverflow.com/questions/1011712/what-are-your-tips-for-keeping-track-and-avoiding-bugs-in-loops/1015064#1015064">following</a></p>
<ul>
<li>use foreach and iterators whenever possible </li>
<li>initialize the variables just before entering the loops</li>
<li>Make each loop perform only one function. Avoid mixing responsibilities in a single loop</li>
<li>When possible, make your loops short enough to view all at once</li>
</ul>
http://stackoverflow.com/questions/544134/ways-to-search-for-a-pattern-in-all-stored-procedures-and-then-open-it-to-be-alte/1011967#10119671Answer by YordanGeorgiev for Ways to Search for a Pattern in all Stored Procedures and then Open it to be AlteredYordanGeorgiev2009-06-18T10:29:58Z2009-06-18T10:29:58Z<pre><code>begin
--select column_name from INFORMATION_SCHEMA.COLUMNS where TABLE_NAME='Products'
--Declare the Table variable
DECLARE @GeneratedStoredProcedures TABLE
(
Number INT IDENTITY(1,1), --Auto incrementing Identity column
name VARCHAR(300) --The string value
)
--Decalre a variable to remember the position of the current delimiter
DECLARE @CurrentDelimiterPositionVar INT
declare @sqlCode varchar(max)
--Decalre a variable to remember the number of rows in the table
DECLARE @Count INT
--Populate the TABLE variable using some logic
INSERT INTO @GeneratedStoredProcedures SELECT name FROM sys.procedures where name like 'procGen_%'
--Initialize the looper variable
SET @CurrentDelimiterPositionVar = 1
--Determine the number of rows in the Table
SELECT @Count=max(Number) from @GeneratedStoredProcedures
--A variable to hold the currently selected value from the table
DECLARE @CurrentValue varchar(300);
--Loop through until all row processing is done
WHILE @CurrentDelimiterPositionVar <= @Count
BEGIN
--Load current value from the Table
SELECT @CurrentValue = name FROM @GeneratedStoredProcedures WHERE Number = @CurrentDelimiterPositionVar
--Process the current value
--print @CurrentValue
set @sqlCode = 'drop procedure ' + @CurrentValue
print @sqlCode
--exec (@sqlCode)
--Increment loop counter
SET @CurrentDelimiterPositionVar = @CurrentDelimiterPositionVar + 1;
END
end
</code></pre>
http://stackoverflow.com/questions/169330/simple-way-to-programmatically-get-all-stored-procedures/1011945#10119450Answer by YordanGeorgiev for Simple way to programmatically get all stored proceduresYordanGeorgiev2009-06-18T10:25:40Z2009-06-18T10:25:40Z<pre><code>begin
--select column_name from INFORMATION_SCHEMA.COLUMNS where TABLE_NAME='Products'
--Declare the Table variable
DECLARE @GeneratedStoredProcedures TABLE
(
Number INT IDENTITY(1,1), --Auto incrementing Identity column
name VARCHAR(300) --The string value
)
--Decalre a variable to remember the position of the current delimiter
DECLARE @CurrentDelimiterPositionVar INT
declare @sqlCode varchar(max)
--Decalre a variable to remember the number of rows in the table
DECLARE @Count INT
--Populate the TABLE variable using some logic
INSERT INTO @GeneratedStoredProcedures SELECT name FROM sys.procedures where name like 'procGen_%'
--Initialize the looper variable
SET @CurrentDelimiterPositionVar = 1
--Determine the number of rows in the Table
SELECT @Count=max(Number) from @GeneratedStoredProcedures
--A variable to hold the currently selected value from the table
DECLARE @CurrentValue varchar(300);
--Loop through until all row processing is done
WHILE @CurrentDelimiterPositionVar <= @Count
BEGIN
--Load current value from the Table
SELECT @CurrentValue = name FROM @GeneratedStoredProcedures WHERE Number = @CurrentDelimiterPositionVar
--Process the current value
--print @CurrentValue
set @sqlCode = 'drop procedure ' + @CurrentValue
print @sqlCode
--exec (@sqlCode)
--Increment loop counter
SET @CurrentDelimiterPositionVar = @CurrentDelimiterPositionVar + 1;
END
end
</code></pre>
http://stackoverflow.com/questions/219434/query-that-returns-list-of-all-stored-procedures-in-an-ms-sql-database/1011943#10119430Answer by YordanGeorgiev for Query that returns list of all Stored Procedures in an MS SQL databaseYordanGeorgiev2009-06-18T10:24:44Z2009-06-18T10:24:44Z<p>If you want to do someting to them check this <a href="http://ysgitdiary.blogspot.com/2009/06/delete-all-my-generated-stored.html" rel="nofollow">link</a>:</p>
http://stackoverflow.com/questions/1006192/how-to-get-a-system-collections-generic-listfieldinfo-list-which-holds-all-fiel1How-to get a System.Collections.Generic.List<FieldInfo> list which holds all FieldInfo's of an object of a Type T up to the Object in the class hierarchy in C# ?YordanGeorgiev2009-06-17T10:20:55Z2009-06-17T10:54:34Z
<p>I am trying to reuse an existing code ... but with no success . Here is the code snippet: </p>
<pre><code>using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;
using System.Reflection;
namespace GenApp.Utils.Reflection
{
class FieldTraverser
{
public static string SearchFieldValue(object obj, int MaxLevel, string strFieldMeta , ref object fieldValue)
{
if (obj == null)
return null;
else
{
StringBuilder sb = new StringBuilder();
bool flagShouldStop = false;
FieldTraverser.PrivDump(sb, obj, "[ObjectToDump]", 0, MaxLevel , ref flagShouldStop , ref fieldValue);
return sb.ToString();
}
} //eof method
public static object GetFieldValue(object obj, string fieldName, ref bool flagShouldStop, ref object objFieldValue)
{
FieldInfo fi;
Type t;
t = obj.GetType();
fi = t.GetField(fieldName, BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance);
if (fi == null)
return null;
else
{
if (fi.Name.Equals(fieldName))
{
objFieldValue = fi.GetValue(obj);
flagShouldStop = true;
}
return fi.GetValue(obj);
} //eof else
} //eof method
protected static void DumpType(string InitialStr, StringBuilder sb, object obj,
int level, System.Type t, int maxlevel , ref bool flagShouldStop , ref object objFieldValue
)
{
FieldInfo[] fi;
fi = t.GetFields(BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance);
if (t == typeof(System.Delegate)) return;
foreach (FieldInfo f in fi)
{
PrivDump(sb, f.GetValue(obj), f.Name, level + 1, maxlevel , ref flagShouldStop , ref objFieldValue);
if (flagShouldStop == true)
return;
}
object[] arl;
int i;
if (obj is System.Array)
{
try
{
arl = (object[])obj;
for (i = 0; i < arl.GetLength(0); i++)
{
PrivDump(sb, arl[i], "[" + i + "]", level + 1, maxlevel, ref flagShouldStop, ref objFieldValue);
if (flagShouldStop == true)
return;
}
}
catch (Exception) { }
}
}
protected static void PrivDump(StringBuilder sb, object obj, string objName, int level, int MaxLevel, ref bool flagShouldStop, ref object objFieldValue)
{
if (obj == null)
return;
if (MaxLevel >= 0 && level >= MaxLevel)
return;
string padstr;
padstr = "";
for (int i = 0; i < level; i++)
if (i < level - 1)
padstr += "|";
else
padstr += "+";
string str;
string[] strarr;
Type t;
t = obj.GetType();
strarr = new String[7];
strarr[0] = padstr;
strarr[1] = objName;
strarr[2] = " AS ";
strarr[3] = t.FullName;
strarr[4] = " = ";
strarr[5] = obj.ToString();
strarr[6] = "\r\n";
sb.Append(String.Concat(strarr));
if (obj.GetType().BaseType == typeof(ValueType))
return;
FieldTraverser.DumpType(padstr, sb, obj, level, t, MaxLevel, ref flagShouldStop , ref objFieldValue);
Type bt;
bt = t.BaseType;
if (bt != null)
{
while (!(bt == typeof(Object)))
{
str = bt.FullName;
sb.Append(padstr + "(" + str + ")\r\n");
FieldTraverser.DumpType(padstr, sb, obj, level, bt, MaxLevel , ref flagShouldStop , ref objFieldValue);
bt = bt.BaseType;
if (bt != null)
continue;
break;
} while (bt != typeof(Object)) ;
}
} //eof method
}//eof class
} //eof namespace
</code></pre>
http://stackoverflow.com/questions/1006192/how-to-get-a-system-collections-generic-listfieldinfo-list-which-holds-all-fiel/1006341#10063410Answer by YordanGeorgiev for How-to get a System.Collections.Generic.List<FieldInfo> list which holds all FieldInfo's of an object of a Type T up to the Object in the class hierarchy in C# ?YordanGeorgiev2009-06-17T10:54:34Z2009-06-17T10:54:34Z<p>Thanks for the answers I was trying to do something like this ( I am still not sure that .ToString() would be the best way to compare to values of a field: </p>
<pre><code>using System;
using System.Reflection;
class Foo
{
public string abc;
}
class Bar : Foo
{
private int def = 0;
}
static class Program
{
static void Main()
{
object obj = new Bar();
object objShouldNotHaveIt = new Foo();
object objShouldHaveIt = new Bar();
string myQuestion = "How-to get a System.Collections.Generic.List<FieldInfo> list which holds all FieldInfo’s of an object of a Type T up to the Object in the class hierarchy in C# ?";
if (Program.SearchFieldByValue(objShouldNotHaveIt, "def", 0))
Console.WriteLine(" NOK");
if ( Program.SearchFieldByValue(objShouldHaveIt , "def" , 0 ))
Console.WriteLine(" OK ");
Console.WriteLine("Is a " + myQuestion.Length.ToString() + " chars long string considered as long question ? ");
Console.ReadLine();
} //eof main
public static bool SearchFieldByValue ( object obj , string strFieldName , object objFieldValue )
{
FieldInfo[] fields = obj.GetType().GetFields(
BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance);
foreach (FieldInfo field in fields)
{
object objFieldValueReflected = field.GetValue(obj) ;
Console.WriteLine(field.Name + " = " + field.GetValue(obj));
if (objFieldValueReflected != null && objFieldValue.ToString().Equals(objFieldValueReflected.ToString()))
return true;
else
continue;
}
return false;
} //eof method
} //eof class
</code></pre>
http://stackoverflow.com/questions/21547/in-mssql-how-do-i-generate-a-create-table-statement-for-a-given-table/991321#9913210Answer by YordanGeorgiev for In MSSQL, how do I generate a CREATE TABLE statement for a given table?YordanGeorgiev2009-06-13T19:19:42Z2009-06-13T19:19:42Z<p>-- or you could create a stored procedure ... first with Id creation
USE [db]
GO</p>
<pre><code>/****** Object: StoredProcedure [dbo].[procUtils_InsertGeneratorWithId] Script Date: 06/13/2009 22:18:11 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
create PROC [dbo].[procUtils_InsertGeneratorWithId]
(
@domain_user varchar(50),
@tableName varchar(100)
)
as
--Declare a cursor to retrieve column specific information for the specified table
DECLARE cursCol CURSOR FAST_FORWARD FOR
SELECT column_name,data_type FROM information_schema.columns WHERE table_name = @tableName
OPEN cursCol
DECLARE @string nvarchar(3000) --for storing the first half of INSERT statement
DECLARE @stringData nvarchar(3000) --for storing the data (VALUES) related statement
DECLARE @dataType nvarchar(1000) --data types returned for respective columns
DECLARE @IDENTITY_STRING nvarchar ( 100 )
SET @IDENTITY_STRING = ' '
select @IDENTITY_STRING
SET @string='INSERT '+@tableName+'('
SET @stringData=''
DECLARE @colName nvarchar(50)
FETCH NEXT FROM cursCol INTO @colName,@dataType
IF @@fetch_status<>0
begin
print 'Table '+@tableName+' not found, processing skipped.'
close curscol
deallocate curscol
return
END
WHILE @@FETCH_STATUS=0
BEGIN
IF @dataType in ('varchar','char','nchar','nvarchar')
BEGIN
--SET @stringData=@stringData+'''''''''+isnull('+@colName+','''')+'''''',''+'
SET @stringData=@stringData+''''+'''+isnull('''''+'''''+'+@colName+'+'''''+''''',''NULL'')+'',''+'
END
ELSE
if @dataType in ('text','ntext') --if the datatype is text or something else
BEGIN
SET @stringData=@stringData+'''''''''+isnull(cast('+@colName+' as varchar(2000)),'''')+'''''',''+'
END
ELSE
IF @dataType = 'money' --because money doesn't get converted from varchar implicitly
BEGIN
SET @stringData=@stringData+'''convert(money,''''''+isnull(cast('+@colName+' as varchar(200)),''0.0000'')+''''''),''+'
END
ELSE
IF @dataType='datetime'
BEGIN
--SET @stringData=@stringData+'''convert(datetime,''''''+isnull(cast('+@colName+' as varchar(200)),''0'')+''''''),''+'
--SELECT 'INSERT Authorizations(StatusDate) VALUES('+'convert(datetime,'+isnull(''''+convert(varchar(200),StatusDate,121)+'''','NULL')+',121),)' FROM Authorizations
--SET @stringData=@stringData+'''convert(money,''''''+isnull(cast('+@colName+' as varchar(200)),''0.0000'')+''''''),''+'
SET @stringData=@stringData+'''convert(datetime,'+'''+isnull('''''+'''''+convert(varchar(200),'+@colName+',121)+'''''+''''',''NULL'')+'',121),''+'
-- 'convert(datetime,'+isnull(''''+convert(varchar(200),StatusDate,121)+'''','NULL')+',121),)' FROM Authorizations
END
ELSE
IF @dataType='image'
BEGIN
SET @stringData=@stringData+'''''''''+isnull(cast(convert(varbinary,'+@colName+') as varchar(6)),''0'')+'''''',''+'
END
ELSE --presuming the data type is int,bit,numeric,decimal
BEGIN
--SET @stringData=@stringData+'''''''''+isnull(cast('+@colName+' as varchar(200)),''0'')+'''''',''+'
--SET @stringData=@stringData+'''convert(datetime,'+'''+isnull('''''+'''''+convert(varchar(200),'+@colName+',121)+'''''+''''',''NULL'')+'',121),''+'
SET @stringData=@stringData+''''+'''+isnull('''''+'''''+convert(varchar(200),'+@colName+')+'''''+''''',''NULL'')+'',''+'
END
SET @string=@string+@colName+','
FETCH NEXT FROM cursCol INTO @colName,@dataType
END
DECLARE @Query nvarchar(4000)
SET @query ='SELECT '''+substring(@string,0,len(@string)) + ') VALUES(''+ ' + substring(@stringData,0,len(@stringData)-2)+'''+'')'' FROM '+@tableName
exec sp_executesql @query
--select @query
CLOSE cursCol
DEALLOCATE cursCol
/*
USAGE
*/
GO
</code></pre>
<p>-- and second without iD INSERTION</p>
<pre><code>USE [db]
GO
/****** Object: StoredProcedure [dbo].[procUtils_InsertGenerator] Script Date: 06/13/2009 22:20:52 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROC [dbo].[procUtils_InsertGenerator]
(
@domain_user varchar(50),
@tableName varchar(100)
)
as
--Declare a cursor to retrieve column specific information for the specified table
DECLARE cursCol CURSOR FAST_FORWARD FOR
-- SELECT column_name,data_type FROM information_schema.columns WHERE table_name = @tableName
/* NEW
SELECT c.name , sc.data_type FROM sys.extended_properties AS ep
INNER JOIN sys.tables AS t ON ep.major_id = t.object_id
INNER JOIN sys.columns AS c ON ep.major_id = c.object_id AND ep.minor_id
= c.column_id
INNER JOIN INFORMATION_SCHEMA.COLUMNS sc ON t.name = sc.table_name and
c.name = sc.column_name
WHERE t.name = @tableName and c.is_identity=0
*/
select object_name(c.object_id) "TABLE_NAME", c.name "COLUMN_NAME", s.name "DATA_TYPE"
from sys.columns c
join sys.systypes s on (s.xtype = c.system_type_id)
where object_name(c.object_id) in (select name from sys.tables where name not like 'sysdiagrams')
AND object_name(c.object_id) in (select name from sys.tables where [name]=@tableName ) and c.is_identity=0 and s.name not like 'sysname'
OPEN cursCol
DECLARE @string nvarchar(3000) --for storing the first half of INSERT statement
DECLARE @stringData nvarchar(3000) --for storing the data (VALUES) related statement
DECLARE @dataType nvarchar(1000) --data types returned for respective columns
DECLARE @IDENTITY_STRING nvarchar ( 100 )
SET @IDENTITY_STRING = ' '
select @IDENTITY_STRING
SET @string='INSERT '+@tableName+'('
SET @stringData=''
DECLARE @colName nvarchar(50)
FETCH NEXT FROM cursCol INTO @tableName , @colName,@dataType
IF @@fetch_status<>0
begin
print 'Table '+@tableName+' not found, processing skipped.'
close curscol
deallocate curscol
return
END
WHILE @@FETCH_STATUS=0
BEGIN
IF @dataType in ('varchar','char','nchar','nvarchar')
BEGIN
--SET @stringData=@stringData+'''''''''+isnull('+@colName+','''')+'''''',''+'
SET @stringData=@stringData+''''+'''+isnull('''''+'''''+'+@colName+'+'''''+''''',''NULL'')+'',''+'
END
ELSE
if @dataType in ('text','ntext') --if the datatype is text or something else
BEGIN
SET @stringData=@stringData+'''''''''+isnull(cast('+@colName+' as varchar(2000)),'''')+'''''',''+'
END
ELSE
IF @dataType = 'money' --because money doesn't get converted from varchar implicitly
BEGIN
SET @stringData=@stringData+'''convert(money,''''''+isnull(cast('+@colName+' as varchar(200)),''0.0000'')+''''''),''+'
END
ELSE
IF @dataType='datetime'
BEGIN
--SET @stringData=@stringData+'''convert(datetime,''''''+isnull(cast('+@colName+' as varchar(200)),''0'')+''''''),''+'
--SELECT 'INSERT Authorizations(StatusDate) VALUES('+'convert(datetime,'+isnull(''''+convert(varchar(200),StatusDate,121)+'''','NULL')+',121),)' FROM Authorizations
--SET @stringData=@stringData+'''convert(money,''''''+isnull(cast('+@colName+' as varchar(200)),''0.0000'')+''''''),''+'
SET @stringData=@stringData+'''convert(datetime,'+'''+isnull('''''+'''''+convert(varchar(200),'+@colName+',121)+'''''+''''',''NULL'')+'',121),''+'
-- 'convert(datetime,'+isnull(''''+convert(varchar(200),StatusDate,121)+'''','NULL')+',121),)' FROM Authorizations
END
ELSE
IF @dataType='image'
BEGIN
SET @stringData=@stringData+'''''''''+isnull(cast(convert(varbinary,'+@colName+') as varchar(6)),''0'')+'''''',''+'
END
ELSE --presuming the data type is int,bit,numeric,decimal
BEGIN
--SET @stringData=@stringData+'''''''''+isnull(cast('+@colName+' as varchar(200)),''0'')+'''''',''+'
--SET @stringData=@stringData+'''convert(datetime,'+'''+isnull('''''+'''''+convert(varchar(200),'+@colName+',121)+'''''+''''',''NULL'')+'',121),''+'
SET @stringData=@stringData+''''+'''+isnull('''''+'''''+convert(varchar(200),'+@colName+')+'''''+''''',''NULL'')+'',''+'
END
SET @string=@string+@colName+','
FETCH NEXT FROM cursCol INTO @tableName , @colName,@dataType
END
DECLARE @Query nvarchar(4000)
SET @query ='SELECT '''+substring(@string,0,len(@string)) + ') VALUES(''+ ' + substring(@stringData,0,len(@stringData)-2)+'''+'')'' FROM '+@tableName
exec sp_executesql @query
--select @query
CLOSE cursCol
DEALLOCATE cursCol
/*
use poc
go
DECLARE @RC int
DECLARE @domain_user varchar(50)
DECLARE @tableName varchar(100)
-- TODO: Set parameter values here.
set @domain_user='yorgeorg'
set @tableName = 'tbGui_WizardTabButtonAreas'
EXECUTE @RC = [POC].[dbo].[procUtils_InsertGenerator]
@domain_user
,@tableName
*/
GO
</code></pre>
http://stackoverflow.com/questions/595507/code-generator-tool-to-generate-a-property-and-backing-field/991309#9913090Answer by YordanGeorgiev for Code generator tool to generate a property and backing fieldYordanGeorgiev2009-06-13T19:14:39Z2009-06-13T19:14:39Z<p>With <a href="http://www.codesmithtools.com/" rel="nofollow">CodeSmith</a> is just a click away. Sometimes is better to buy the tool, instead of reinventing the wheel </p>
<pre><code><%--
Name: Database Table Properties
Authors: Paul Welter , Yordan Georgiev
Description: Create a list of properties from a database table with a region for each prop
--%>
<%@ CodeTemplate Language="C#" TargetLanguage="C#" Debug="False" Description="Create a list of properties from database table." %>
<%@ Property Name="SourceTable" Type="SchemaExplorer.TableSchema" Category="Context" Description="Table that the object is based on." %>
<%@ Map Name="CSharpAlias" Src="System-CSharpAlias" Description="System to C# Type Map" %>
<%@ Assembly Name="SchemaExplorer" %>
<%@ Import Namespace="SchemaExplorer" %>
<% foreach (ColumnSchema column in this.SourceTable.Columns) { %>
#region <%= StringUtil.ToPascalCase(column.Name) %>
private <%= CSharpAlias[column.SystemType.FullName] %> _<%= StringUtil.ToPascalCase(column.Name) %>;
public <%= CSharpAlias[column.SystemType.FullName] %> <%= StringUtil.ToPascalCase(column.Name) %>
{
get { return _<%= StringUtil.ToPascalCase(column.Name) %>; }
set { _<%= StringUtil.ToPascalCase(column.Name) %> = value; }
}
#endregion <%= StringUtil.ToPascalCase(column.Name) %>
<% } %>
</code></pre>
http://stackoverflow.com/questions/781827/is-there-a-way-to-create-automatically-create-properties-from-a-sql-server-databa/991304#9913041Answer by YordanGeorgiev for Is there a way to create automatically create properties from a SQL Server database?YordanGeorgiev2009-06-13T19:12:01Z2009-06-13T19:12:01Z<p>CodeSmith: </p>
<pre><code><%--
Name: Database Table Properties
Authors: Paul Welter , Yordan Georgiev
Description: Create a list of properties from a database table with a region for each prop
--%>
<%@ CodeTemplate Language="C#" TargetLanguage="C#" Debug="False" Description="Create a list of properties from database table." %>
<%@ Property Name="SourceTable" Type="SchemaExplorer.TableSchema" Category="Context" Description="Table that the object is based on." %>
<%@ Map Name="CSharpAlias" Src="System-CSharpAlias" Description="System to C# Type Map" %>
<%@ Assembly Name="SchemaExplorer" %>
<%@ Import Namespace="SchemaExplorer" %>
<% foreach (ColumnSchema column in this.SourceTable.Columns) { %>
#region <%= StringUtil.ToPascalCase(column.Name) %>
private <%= CSharpAlias[column.SystemType.FullName] %> _<%= StringUtil.ToPascalCase(column.Name) %>;
public <%= CSharpAlias[column.SystemType.FullName] %> <%= StringUtil.ToPascalCase(column.Name) %>
{
get { return _<%= StringUtil.ToPascalCase(column.Name) %>; }
set { _<%= StringUtil.ToPascalCase(column.Name) %> = value; }
}
#endregion <%= StringUtil.ToPascalCase(column.Name) %>
<% } %>
</code></pre>
http://stackoverflow.com/questions/821201/is-there-a-better-way-to-debug-sql/969818#9698180Answer by YordanGeorgiev for Is there a better way to debug SQL?YordanGeorgiev2009-06-09T12:34:27Z2009-06-09T12:34:27Z<p>I do use the following tactics. </p>
<p>During writing of the stored procedure have a @procStep var
each time a new logical step is executed
set @procStep = "What the ... is happening here " ; </p>
<p>the rest is <a href="http://ysgitdiary.blogspot.com/2009/06/debugging-procedure-with-table-for-sql.html" rel="nofollow">here</a> </p>
http://stackoverflow.com/questions/824447/debugging-ms-sql-stored-procedure/969808#9698080Answer by YordanGeorgiev for Debugging MS SQL Stored ProcedureYordanGeorgiev2009-06-09T12:32:29Z2009-06-09T12:32:29Z<p>a <a href="http://ysgitdiary.blogspot.com/2009/06/debugging-procedure-with-table-for-sql.html" rel="nofollow">link</a></p>
http://stackoverflow.com/questions/863950/how-can-i-attach-to-and-debug-a-running-sql-server-stored-procedure/969800#9698000Answer by YordanGeorgiev for How can I attach to and debug a running SQL Server stored procedure?YordanGeorgiev2009-06-09T12:31:22Z2009-06-09T12:31:22Z<p>A <a href="http://ysgitdiary.blogspot.com/2009/06/debugging-procedure-with-table-for-sql.html" rel="nofollow">link</a></p>
http://stackoverflow.com/questions/258483/best-practices-for-localizing-a-sql-server-2005-2008-database/865133#8651330Answer by YordanGeorgiev for Best-practices for localizing a SQL Server (2005/2008) databaseYordanGeorgiev2009-05-14T19:07:34Z2009-06-09T09:53:43Z<p>Here some thoghts on the Rick Strahl's blog: </p>
<p><a href="http://www.west-wind.com/weblog/posts/695968.aspx" rel="nofollow">Localization of database</a>
<a href="http://www.west-wind.com/Weblog/posts/698097.aspx" rel="nofollow">Localization of JavaScript</a> </p>
<p>I do prefer to use a single switch in a UserSetting table , which is used by calling stored procedure ... here some of the code </p>
<pre><code>CREATE TABLE [dbo].[Lang_en_US_Msg](
[MsgId] [int] IDENTITY(1,1) NOT NULL,
[MsgKey] [varchar](200) NOT NULL,
[MsgTxt] [varchar](2000) NOT NULL,
[MsgDescription] [varchar](2000) NOT NULL,
CONSTRAINT [PK_Lang_US-us__Msg] PRIMARY KEY CLUSTERED
(
[MsgId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
CREATE TABLE [dbo].[User](
[UserId] [int] IDENTITY(1,1) NOT NULL,
[FirstName] [varchar](50) NOT NULL,
[MiddleName] [varchar](50) NULL,
[LastName] [varchar](50) NULL,
[DomainName] [varchar](50) NULL,
CONSTRAINT [PK_User] PRIMARY KEY CLUSTERED
(
[UserId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
CREATE TABLE [dbo].[UserSetting](
[UserSettingId] [int] IDENTITY(1,1) NOT NULL,
[UserId] [int] NOT NULL,
[CultureInfo] [varchar](50) NOT NULL,
[GuiLanguage] [varchar](10) NOT NULL,
CONSTRAINT [PK_UserSetting] PRIMARY KEY CLUSTERED
(
[UserSettingId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
</code></pre>
<p>GO</p>
<pre><code> ALTER TABLE [dbo].[UserSetting] ADD CONSTRAINT [DF_UserSetting_CultureInfo] DEFAULT ('fi-FI') FOR [CultureInfo]
GO
CREATE TABLE [dbo].[Lang_fi_FI_Msg](
[MsgId] [int] IDENTITY(1,1) NOT NULL,
[MsgKey] [varchar](200) NOT NULL,
[MsgTxt] [varchar](2000) NOT NULL,
[MsgDescription] [varchar](2000) NOT NULL,
[DbSysNameForExpansion] [varchar](50) NULL,
CONSTRAINT [PK_Lang_Fi-fi__Msg] PRIMARY KEY CLUSTERED
(
[MsgId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
CREATE PROCEDURE [dbo].[procGui_GetPageMsgs]
@domainUser varchar(50) , -- the domain_user performing the action
@msgOut varchar(4000) OUT, -- the (error) msg to be shown to the user
@debugMsgOut varchar(4000) OUT , -- this variable holds the debug msg to be shown if debug level is enabled
@ret int OUT -- the variable indicating success or failure
AS
BEGIN -- proc start
SET NOCOUNT ON;
declare @procedureName varchar(200)
declare @procStep varchar(4000)
set @procedureName = ( SELECT OBJECT_NAME(@@PROCID))
set @msgOut = ' '
set @debugMsgOut = ' '
set @procStep = ' '
BEGIN TRY --begin try
set @ret = 1 --assume false from the beginning
--===============================================================
--debug set @procStep=@procStep + 'GETTING THE GUI LANGUAGE FOR THIS USER '
--===============================================================
declare @guiLanguage nvarchar(10)
if ( @domainUser is null)
set @guiLanguage = (select Val from AppSetting where Name='guiLanguage')
else
set @guiLanguage = (select GuiLanguage from UserSetting us join [User] u on u.UserId = us.UserId where u.DomainName=@domainUser)
set @guiLanguage = REPLACE ( @guiLanguage , '-' , '_' ) ;
--===============================================================
set @procStep=@procStep + ' BUILDING THE SQL QUERY '
--===============================================================
DECLARE @sqlQuery AS nvarchar(2000)
SET @sqlQuery = 'SELECT MsgKey , MsgTxt FROM dbo.lang_' + @guiLanguage + '_Msg'
--===============================================================
set @procStep=@procStep + 'EXECUTING THE SQL QUERY'
--===============================================================
print @sqlQuery
exec sp_executesql @sqlQuery
set @debugMsgOut = @procStep
set @ret = @@ERROR
END TRY --end try
BEGIN CATCH
PRINT 'In CATCH block.
Error number: ' + CAST(ERROR_NUMBER() AS varchar(10)) + '
Error message: ' + ERROR_MESSAGE() + '
Error severity: ' + CAST(ERROR_SEVERITY() AS varchar(10)) + '
Error state: ' + CAST(ERROR_STATE() AS varchar(10)) + '
XACT_STATE: ' + CAST(XACT_STATE() AS varchar(10));
set @msgOut = 'Failed to execute ' + @sqlQuery
set @debugMsgOut = ' Error number: ' + CAST(ERROR_NUMBER() AS varchar(10)) +
'Error message: ' + ERROR_MESSAGE() + 'Error severity: ' + CAST(ERROR_SEVERITY() AS varchar(10)) +
'Error state: ' + CAST(ERROR_STATE() AS varchar(10)) + 'XACT_STATE: ' + CAST(XACT_STATE() AS varchar(10))
--record the error in the database
--debug
--EXEC [dbo].[procUtils_DebugDb]
-- @DomainUser = @domainUser,
-- @debugmsg = @debugMsgOut,
-- @ret = 1,
-- @procedureName = @procedureName ,
-- @procedureStep = @procStep
-- set @ret = 1
END CATCH
return @ret
END --procedure end
</code></pre>
http://stackoverflow.com/questions/943664/is-there-a-way-to-force-the-refresh-the-meta-model-which-subsonic-builds-after-a0Is there a way to force the refresh the meta model, which SubSonic builds after a DDL change in the DataBaseYordanGeorgiev2009-06-03T08:35:53Z2009-06-05T07:47:50Z
<p>E.g. when I add a new table it does not appear in the Northwind namespace untill I remove the project folder from :
C:\Users\userName\AppData\Local\Temp\Temporary ASP.NET Files\</p>
<p>or add and readd the SubSonic.dll </p>
<p>I have the following configuration :</p>
<pre><code> <configSections>
<section name="SubSonicService" type="SubSonic.SubSonicSection, SubSonic"></section>
....
<SubSonicService defaultProvider="Northwind">
<providers>
<clear/>
<add name="Northwind"
type="SubSonic.SqlDataProvider, SubSonic"
connectionStringName="Northwind"
generatedNamespace="Northwind"/>
</providers>
</SubSonicService>
<connectionStrings>
<add name="Northwind" connectionString="Data Source=.;Database=Northwind;Integrated Security=true;"/>
</connectionStrings>
....
<compilation debug="true">
<buildProviders>
<add extension=".abp" type="SubSonic.BuildProvider, SubSonic"/>
</buildProviders>
...
<pages>
<controls>
<add assembly="SubSonic" namespace="SubSonic" tagPrefix="subsonic"/>
</code></pre>
http://stackoverflow.com/questions/943664/is-there-a-way-to-force-the-refresh-the-meta-model-which-subsonic-builds-after-a/949659#9496590Answer by YordanGeorgiev for Is there a way to force the refresh the meta model, which SubSonic builds after a DDL change in the DataBaseYordanGeorgiev2009-06-04T10:10:49Z2009-06-05T07:47:50Z<p>Thanks, both worked !</p>
<p>Either as you said to simply change the *.abp file ( added couple of spaces) </p>
<p>or </p>
<p>sonic.exe generate /config "D:\path\to\my\web.config"</p>
<p>P.S.
I have a D:\temp\utils folder , where I keep all the command line tools used ... and it is part of the %PATH% environmental variable ...
and it took me couple of minutes to realize that I had to copy the whole : </p>
<p>D:\libs\orm\SubSonic_2.1_Final_Source\src\SubSonic\bin\Debug directory to that command line tools folder ... </p>
<p>Edit: Even faster with VS External Tool command :
Tools - External Tools - Add
Title: SubSonic
Command: D:\path\to\sonic.exe
Arguments: generate /config "D:\path\to\my\web.config"
Initial Directory: {$ProjectDir}</p>
<p>Tools - Options - Keyboard
Find tools Subsonic </p>
<p>for it to work from anywhere on the command line </p>
http://stackoverflow.com/questions/1417028/how-to-detect-if-asp-net-control-properties-contain-databinding-expressionsComment by YordanGeorgiev on How to detect if ASP.NET control properties contain DataBinding expressions?YordanGeorgiev2009-09-13T08:07:33Z2009-09-13T08:07:33Zwhy not just simply bind by Page.DataBind() in code behind ?! It will bind all of the controls in that page recardless of what they are ... See :
<a href="http://support.microsoft.com/kb/307860#1b" rel="nofollow">support.microsoft.com/kb/307860#1b</a>http://stackoverflow.com/questions/1166222/subsonic-3-installation-doesnt-work/1166625#1166625Comment by YordanGeorgiev on SubSonic 3 Installation Doesn't Work?YordanGeorgiev2009-08-15T19:29:57Z2009-08-15T19:29:57Z"If your project is a Website rather than a Web Application Project t4 won't work and you won't see 'Run Custom Tool' in the right click menu."
This should be the first advice for SubSonic 3 newcomers ...http://stackoverflow.com/questions/1011712/what-are-your-tips-for-keeping-track-and-avoiding-bugs-in-loops/1011783#1011783Comment by YordanGeorgiev on What are your tips for keeping track and avoiding bugs in loops ?YordanGeorgiev2009-06-18T09:43:16Z2009-06-18T09:43:16ZWhat would be the code snippet than ?http://stackoverflow.com/questions/1006192/how-to-get-a-system-collections-generic-listfieldinfo-list-which-holds-all-fielComment by YordanGeorgiev on How-to get a System.Collections.Generic.List<FieldInfo> list which holds all FieldInfo's of an object of a Type T up to the Object in the class hierarchy in C# ?YordanGeorgiev2009-06-17T10:59:12Z2009-06-17T10:59:12ZDon't know ... at least grabbed your attention ; )http://stackoverflow.com/questions/1006192/how-to-get-a-system-collections-generic-listfieldinfo-list-which-holds-all-fiel/1006219#1006219Comment by YordanGeorgiev on How-to get a System.Collections.Generic.List<FieldInfo> list which holds all FieldInfo's of an object of a Type T up to the Object in the class hierarchy in C# ?YordanGeorgiev2009-06-17T10:35:01Z2009-06-17T10:35:01ZThanks , I just replied via comment and the ajax call did not refresh your answer ... ; ) So AJAX is not always good http://stackoverflow.com/questions/1006192/how-to-get-a-system-collections-generic-listfieldinfo-list-which-holds-all-fiel/1006210#1006210Comment by YordanGeorgiev on How-to get a System.Collections.Generic.List<FieldInfo> list which holds all FieldInfo's of an object of a Type T up to the Object in the class hierarchy in C# ?YordanGeorgiev2009-06-17T10:27:49Z2009-06-17T10:27:49ZThanks , may be with BindingFlags.FlattenHierarchy ..,http://stackoverflow.com/questions/857678/learn-subsonic-before-nhibernate-or-vice-versa/857887#857887Comment by YordanGeorgiev on Learn SubSonic before NHibernate or Vice Versa?YordanGeorgiev2009-05-31T09:39:32Z2009-05-31T09:39:32Z"Subsonic is great, but you should also be aware that it's very much an open source project"
NHibernate is also open source:
Free/open source - NHibernate is licensed under the LGPL (Lesser GNU Public License)
source:<a href="https://www.hibernate.org/343.html" rel="nofollow">hibernate.org/343.html</a>http://stackoverflow.com/questions/919739/script-for-creating-development-environment-folder-structure/919751#919751Comment by YordanGeorgiev on Script for creating development environment folder structure ?YordanGeorgiev2009-05-28T08:15:26Z2009-05-28T08:15:26Z; ) Yes !!! I should rephrase the question ..., but what would be the first one to put in the Version Control Systemhttp://stackoverflow.com/questions/909414/copy-files-containing-string-to-a-location-oneliner-is-there-a-better-way-wit/909431#909431Comment by YordanGeorgiev on Copy file(s) containing string to a location oneliner - is there a better way with cmd.exe ?YordanGeorgiev2009-05-28T07:35:29Z2009-05-28T07:35:29Z+1 for providing working sample. Thanks. Simple theory without working code about problems discussed here is not very useful ...http://stackoverflow.com/questions/909414/copy-files-containing-string-to-a-location-oneliner-is-there-a-better-way-witComment by YordanGeorgiev on Copy file(s) containing string to a location oneliner - is there a better way with cmd.exe ?YordanGeorgiev2009-05-28T06:51:12Z2009-05-28T06:51:12ZNot at all - but than the question should be :
Copy file(s) containing string to a location oneliner - is there a better way with PowerShell ?http://stackoverflow.com/questions/60904/how-can-i-open-a-cmd-window-in-a-specific-location/60907#60907Comment by YordanGeorgiev on How can I open a cmd window in a specific locationYordanGeorgiev2009-05-28T06:07:17Z2009-05-28T06:07:17ZThanks ... Even shorter from GUI :
WinLogo + R , type :
cmd /c "start /max cmd /K "cd C:\Windows\""http://stackoverflow.com/questions/272821/get-executing-assembly-name-from-referenced-dll-in-c/272833#272833Comment by YordanGeorgiev on Get executing assembly name from referenced DLL in C#YordanGeorgiev2009-05-28T05:35:50Z2009-05-28T05:35:50ZTo find out which is the required namespace just select in the above code the Assembly and Ctrl + Shift + F10 ...http://stackoverflow.com/questions/909414/copy-files-containing-string-to-a-location-oneliner-is-there-a-better-way-wit/909425#909425Comment by YordanGeorgiev on Copy file(s) containing string to a location oneliner - is there a better way with cmd.exe ?YordanGeorgiev2009-05-26T13:03:19Z2009-05-26T13:03:19Zdone ; ) Sorry had to work also a bit ... ; )http://stackoverflow.com/questions/909414/copy-files-containing-string-to-a-location-oneliner-is-there-a-better-way-wit/909425#909425Comment by YordanGeorgiev on Copy file(s) containing string to a location oneliner - is there a better way with cmd.exe ?YordanGeorgiev2009-05-26T07:56:40Z2009-05-26T07:56:40ZYep , the folder structure was unneeded and did not exactly answered the question ... I was way to fast to mark the answer without properly testing it ... Anyway thanks for the answers and comments !!!http://stackoverflow.com/questions/909414/copy-files-containing-string-to-a-location-oneliner-is-there-a-better-way-wit/909425#909425Comment by YordanGeorgiev on Copy file(s) containing string to a location oneliner - is there a better way with cmd.exe ?YordanGeorgiev2009-05-26T07:52:29Z2009-05-26T07:52:29ZActually it copied only the files containing the string ...
XCOPY /S *sonic.exe D:\temp\utils\tmp
D:ORM\SubSonic_2.1_Final_Source\src\SubCommander\bin\Debug\sonic.exe
D:ORM\SubSonic_2.1_Final_Source\src\SubCommander\obj\Debug\sonic.exe
2 File(s) copied