º
ºa¤Ö@¤½¥q
Problem fixed
^.^
Using ADODB.Command and call stored procedure
It can pass unicode data
You cannot call the stored procedure by using following method
set rs = server.createobject("ADODB.Recordset")
rs.execute "stored_procedure 'param1', 'param2'", connection
This method is sql collation dependency, and cannot stored other coding
for example: if you want said simplify chinese in database, which collation
is Taiwan, it is failed although you set the field as N'' type
^.^
^.^
Using ADODB.Command and call stored procedure
It can pass unicode data
You cannot call the stored procedure by using following method
set rs = server.createobject("ADODB.Recordset")
rs.execute "stored_procedure 'param1', 'param2'", connection
This method is sql collation dependency, and cannot stored other coding
for example: if you want said simplify chinese in database, which collation
is Taiwan, it is failed although you set the field as N'' type
^.^