Re: ODBC and SQL string length
From: Scott A. Hissam <hissam_at_source.asset.com>
Date: 26 May 1994 13:01:46 -0400
Message-ID: <2s2klq$u0f_at_source.asset.com>
Date: 26 May 1994 13:01:46 -0400
Message-ID: <2s2klq$u0f_at_source.asset.com>
Group,
the 255 character limitiation that i was getting is specific to EXCEL's ODBC call level interface from VBA, the workaround from microsoft is to use arrays of strings to go beyond the 255 characters per string limit. dim y(10) as string y(1) = "select * " y(2) = "from mytable where myconstraints = 'blah'" y(3) = " group by problem_space" ? SQLExecQuery (connectionnum:=connection, querytext:=y) thanks to all that responded.
Scott Hissam
Unisys Corporation
hissam_at_source.asset.com
Received on Thu May 26 1994 - 19:01:46 CEST