Forum
Merhaba arkadaşlar bu sitenin yeni bir üyesiyim. Şimdiden herkesin yılbaşını kutlarım. Benim Mssql 2008'de çalışırken bir sorunla karşılaştım. Tablodan verileri çekmiyor ve bu hatayı alıyorum "WO_API: failed with error code 5 SQL Select Failed: The multi-part identifier "loginid.customerid" could not be bound." Bu MmoFPS tipinde bir oyunun veritabanıdır. İnternetten "The multi-part identifier" hatasını araştırdım fakat pek birşey anlamadım çünkü bu konuda yeniyimdir. Sorunumun çözülmesinde yardımcı olursanız sevinirim.
Hayırlı günler...
web.config dosyasında şunlar yer alıyor.
<?xml version="1.0" encoding="UTF-8"?>
</configuration>
<!--
Note: As an alternative to hand editing this file you can use the
web admin tool to configure settings for your application. Use
the Website->Asp.Net Configuration option in Visual Studio.
A full list of settings and comments can be found in
machine.config.comments usually located in
\Windows\Microsoft.Net\Framework\v2.x\Config
-->
<configuration>
<!-- application specific settings -->
<appSettings>
<add key="WO_Region" value="EN" />
</appSettings>
<connectionStrings />
<system.web>
<!--
Set compilation debug="true" to insert debugging
symbols into the compiled page. Because this
affects performance, set this value to true only
during development.
-->
<compilation debug="false">
<assemblies>
<add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /></assemblies></compilation>
<!--
The <authentication> section enables configuration
of the security authentication mode used by
ASP.NET to identify an incoming user.
-->
<authentication mode="None" />
<!--
The <customErrors> section enables configuration
of what to do if/when an unhandled error occurs
during the execution of a request. Specifically,
it enables developers to configure html error pages
to be displayed in place of a error stack trace.
<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
<error statusCode="403" redirect="NoAccess.htm" />
<error statusCode="404" redirect="FileNotFound.htm" />
</customErrors>
-->
</system.web>
<system.webServer>
<defaultDocument>
<files>
<add value="index.php" />
</files>
</defaultDocument>
<staticContent>
<mimeMap fileExtension=".php" mimeType="application/x-php" />
</staticContent>
</system.webServer>
</configuration>