我有一个Access数据库,其中包含许多包含特殊字符的列(é,ä等)。如何使用下面的私有函数将这些字符一次更改为多列中的html代码?
Private Function EncodeString(strOriginal as string) as string
Dim strTemp as string
strTemp = strOriginal
strTemp = Replace(strTemp, "ó", "ó")
strTemp = Replace(strTemp, "á", "á")
---
EncodeString = strTemp
结束功能
答案 0 :(得分:1)
您使用anonymous: ~
代替security:
..
providers:
fos_userbundle:
id: fos_user.user_provider.username
firewalls:
main:
pattern: ^/
form_login:
provider: fos_userbundle
csrf_provider: security.csrf.token_manager # Use form.csrf_provider instead for Symfony <2.4
logout: true
anonymous: ~
并使用更新查询。
Public
您可以考虑声明Private
,以便它可以处理NULL值。