This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT TOP 1 [xmlColumnName].value('(//NodeName)[1]','varchar(max)') AS NameOfData | |
FROM [TableWithXMLColumn] | |
WHERE | |
Id = @id |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DECLARE @Id int | |
DECLARE TableCursor CURSOR LOCAL FAST_FORWARD FOR | |
SELECT Id | |
FROM dbo.TABLENAME | |
OPEN TableCursor | |
FETCH NEXT FROM TableCursor INTO @Id | |
WHILE @@FETCH_STATUS=0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<input type="file" capture="camera" accept="image/*" id="cameraInput"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
background-color: #f5f5dc; | |
border-top: solid 10px #333; | |
color: #4c362a; | |
font-size: 1.1em; | |
font-family: 'Alegreya', serif; | |
margin: 0; | |
padding: 0; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.dropCap:first-letter { | |
font-weight: 600; | |
font-size: 6em!important; | |
line-height: .8; | |
display: block; | |
float: left; | |
height: 0.6em; | |
margin: 5px 5px 5px -7px; | |
} |
NewerOlder