I have several records in my db (mssql) that contains §
inside them.
I query my db as such :
squery = "SELECT .... WHERE ....= '...§...'"
AdoCmd.CommandText = sQuery
AdoCmd.CommandType = 1
Set AdoCmd.ActiveConnection = OBJdbConnection
rsado.open AdoCmd,,1,2
However checking via the profile i see that the request is sent with §
(which does not math my record obviously)
The solutions i've found only talk about the object repsonse and not the sql query