asp 连接MySQL 报错 ,编译器异常 '800a0409' 小白 求大神教教,多谢

asp 连接MySQL 报错 ,编译器错误 '800a0409' 小白求救 求大神教教,谢谢
代码如下:
<head>
<title>MySQL连接测试</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body>
<%
 strconnection="dsn=mysqltest;
 drive={mysql odbc 5.3 Unicode Driver};
 server=localhost;uid=root;pwd=006600;database=mm"
 set conn =server.createobject("adodb.connection")
 conn.open strconnection
 sql="select *from my"
 set rs =conn.execute(sql)
 if not rs.bof then
%>
<table width=600 border=1>
<tr>
<td width=""><b>name</b></td>
<td width=""><b>sex</b></td>
</tr>
<%
do while not rs.eof
%>
<tr>
<td><%=rs("name")%></td> <!-- name字段 -->
<td><%=rs("sex")%></td> <!-- sex字段 -->
</tr>
<%
rs.movenext
loop
%>
</table>
<%
rs.close
else
response.write("对不起,没有找到数据。")
end if
set rs = nothing
conn.close
set conn = nothing
%>
</body>
</html>


报错如下:
Microsoft VBScript 编译器错误 *800a0409*
未结束的字符串常量

\wwwroot\test1.asp, line 8


PS:本人小白,刚刚接触asp,求大师指导下,谢谢了
------解决方案--------------------
strconnection="dsn=mysqltest;drive={mysql odbc 5.3 Unicode Driver}; server=localhost;uid=root;pwd=006600;database=mm"
不要打断