Fonctions built-in de SQL ne marchent pas [C#] [ASP] [SQL Server 2000] - C#/.NET managed - Programmation
Marsh Posté le 27-05-2003 à 09:19:54
un truc bizarre (page asp .net en C# attaquant un sql server 2000.) Si je lance une requete via le query analyzer ca fontionne nickel, mais dans le C# ca marche pu... Par exemple: Ca ca marche :
select NOM_CONCESSION from CONCESSION where ID_CONCESSION=45
dans le C# et le query Analyzer. Par contre, ca ca ne marche pu dans le C#:
select lower(NOM_CONCESSION) from CONCESSION where ID_CONCESSION=45
il me sort
DataBinder.Eval: 'System.Data.Common.DbDataRecord' does not contain a property with the name NOM_CONCESSION.
comprends pas. Pourquoi il veut pas prendre les fonctions SQL Server en C# ?
Marsh Posté le 27-05-2003 à 10:00:43
c bon j'ai trouvé, faut rajouter un AS
Make sure you enter the(*)required information where indicate.HTML code is not allowed
Marsh Posté le 27-05-2003 à 09:19:54
un truc bizarre (page asp .net en C# attaquant un sql server 2000.)
Si je lance une requete via le query analyzer ca fontionne nickel, mais dans le C# ca marche pu...
Par exemple:
Ca ca marche :
select NOM_CONCESSION from CONCESSION where ID_CONCESSION=45
dans le C# et le query Analyzer.
Par contre, ca ca ne marche pu dans le C#:
select lower(NOM_CONCESSION) from CONCESSION where ID_CONCESSION=45
il me sort
DataBinder.Eval: 'System.Data.Common.DbDataRecord' does not contain a property with the name NOM_CONCESSION.
comprends pas. Pourquoi il veut pas prendre les fonctions SQL Server en C# ?