cSql := "CREATE USER 'name'@'location' IDENTIFIED BY 'password' oCn:Execute( cSql ) // location can be 'localhost' or a wildcard ip address or '%'. '%' indicates from all locations.
cSql := "GRANT ALL PREVILEGES ON 'dataasename.*' TO 'username'@'location' oCn:Execute( cSql )
ON *.* indicates on all databases @'%' indicates from all locations.