News

Formats SQL Strings so that they can be placed into you code quickly and easily. How many times have you spent several minutes formatting a SQL statement in your code. You know, you get the SQL ...
With Black and Prettier in place SQL strings are pretty much the only major holdouts in the project I'm working on. Manually enforcing a SQL style is time consuming and boring, format-sql is broken ...
Dynamic SQL lets you create a query string based off of user input. SQL Server allows you to create dynamic SQL statements. The statements use a SQL string varchar data type, then you execute the ...
Format Strings and XSS There is another threat regarding XSS Vulnerabilities and format strings. If the output that is generated with a format string function is vulnerable to XSS, this should be ...
Everything else with SQL and DateTime seems to work so well. i.e. it just works I can declare a DateTime in C# and it will drop straight into SQL with no problems or anything.However, getting the ...
We have our SQL server configured to only allow Windows accounts (i.e. not mixed). However, in some cases we are connecting from non-domain boxes and we want to specify a domain account to connect ...
The United Kingdom’s date and time notation displays the date using the day-month-year format (e.g., January 10, 2015, or 10/1/2015), which we can achieve using SQL Server’s built-in “convert” ...
I love the String object's Format method. It's an unusual application where I'm not using it to build messages. (Long ago and far away, I used to use it to assemble SQL statements.) Typical code looks ...