G
Guest
Just starting with ASP.NET and Pulling from data from an Access Database so
I'm using the OleDbDataAdapter
I'm trying to create two data adapters...
daActorNames
daActor
I've successfully created daActor
But for daActorNames the following (which works in T-SQL) just doesn't work
SELECT ActorID, LastName + N', ' + FirstName + N' ' + ISNULL(MiddleName,
N'') AS Actor
FROM tblActors
ORDER BY LastName
I'm trying to produce the following
ActorID Actor
123 LastName, FirstName MI (if there is one... nothing if there
isn't)
Why doesnt' this work in or out of the query builder?
I'm using the OleDbDataAdapter
I'm trying to create two data adapters...
daActorNames
daActor
I've successfully created daActor
But for daActorNames the following (which works in T-SQL) just doesn't work
SELECT ActorID, LastName + N', ' + FirstName + N' ' + ISNULL(MiddleName,
N'') AS Actor
FROM tblActors
ORDER BY LastName
I'm trying to produce the following
ActorID Actor
123 LastName, FirstName MI (if there is one... nothing if there
isn't)
Why doesnt' this work in or out of the query builder?