Viewing 15 posts - 1 through 15 (of 25 total)
I've only used it once, and to the best of my knowledge, my company has only used it on two projects. Both were just before the advent of LINQ to...
February 21, 2014 at 7:19 am
gary.clinton (6/2/2008)
June 2, 2008 at 2:36 pm
Loner (6/2/2008)
June 2, 2008 at 10:19 am
I've helped build a few houses (my parents', sister's, uncle's, and a few others), as well as building several decks and what-not. The biggest difference I've seen is that once...
June 2, 2008 at 7:42 am
James Goodwin (5/20/2008)
What is occuring is an automatic type conversion. If I do this:
Declare @Tmp datetime
set
May 20, 2008 at 3:25 pm
mtassin (5/20/2008)
Create Table #temp_test(testval varchar(10))
INSERT INTO #temp_test values('1234567890ABCD')
SELECT * FROM #temp_test
By your reasoning, I should have 1234567890 as the output.
In the case I have provided, SQL server throws...
May 20, 2008 at 8:47 am
Based on this post, I think you could do this:
Dim cnn As New ADODB.Connection
Dim cmd As New ADODB.Command
Dim strSql As String
cnn.ConnectionString = _
"Provider=Microsoft.Jet.OLEDB.4.0;" & _
...
May 20, 2008 at 8:36 am
Dong Lee (5/19/2008)
set dbSource = OpenDatabase("m:\testdbSource\testSource.mdb")qrySQL = "select * into tblA in 'v:\testdb\test.mdb' from tblSource"
set qry = dbSource.CreateQueryDef("", qrySQL)
qry.Execute
qry.close
set qry = nothing
Never seen anything like that before, but that is...
May 20, 2008 at 8:13 am
Jon Monahan (5/20/2008)
May 20, 2008 at 7:51 am
Chris.Strolia-Davis (5/15/2008)
This kind of goes to my point of there not being levels, per se, but rather job roles and functions. An expert may not need to have the same...
May 15, 2008 at 9:49 am
sadara (5/15/2008)
i disagree. if the programmer can't communcate well with at least the person/people supplying him/her with the spec, s/he will quite likely code what s/he THINKS is required, rather...
May 15, 2008 at 8:03 am
In general, I love the Brazos Valley area around College Station, TX and would absolutely love to move back someday. For a long time, I wanted to go back and...
January 4, 2008 at 6:29 am
majorbloodnock (11/9/2007)
November 9, 2007 at 9:39 am
Great article, Jacob. I think you might have mentioned this previously, but is there a limit to the number of characters an XML query will return? Also, is there a...
November 7, 2007 at 10:07 am
James,
Very well stated, and I think I agree with most, if not all, your points. I think a few more of these massive responses would probably resolve any issues of...
October 26, 2007 at 11:32 am
Viewing 15 posts - 1 through 15 (of 25 total)