Hello:
> custDA.SelectCommand = new FbCommand("SELECT * FROM Persons", conn, txn);
> The Name of the Table is “Persons”.
How you have created the table??, If you have created the table using
CREATE TABLE "Persons" (
....
);
Yo need to use:
custDA.SelectCommand = new FbCommand("SELECT * FROM \"Persons\"", conn,
txn);
--
Best regards
Carlos Guzmán Álvarez
Vigo-Spain
"No tengo dones especiales.Sólo soy apasionadamente curioso"
Albert Einstein, científico.
|