vote up 0 vote down star

I am using subsonic 2.2 with Oracle provider. I can use active record but my simple query does not work! int record = new Select(VenApplication.ApplicationidColumn).From(VenApplication)().GetRecordCount();

The error that i got is

ORA-00923: FROM keyword not found where expected Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Data.OracleClient.OracleException: ORA-00923: FROM keyword not found where expected

Source Error:

Line 23: //int records = new Select(Product.ProductIDColumn, Product.ProductNameColumn). Line 24: // From().GetRecordCount(); Line 25: int record = new Select(VenApplication.ApplicationidColumn).From().GetRecordCount(); Line 26: //int records = new Select(VenApplication.ApplicationidColumn).From().GetRecordCount(); Line 27: }

Source File: d:\myDoc2009\Visual Studio 2008\WebSites\UiaVendor\Default.aspx.cs Line: 25

flag

1 Answer

vote up 0 vote down

You need to specifiy the table name,

Select(VenApplication.ApplicationidColumn).From(VenApplication).GetRecordCount();
link|flag
Actually that what i did. <> – colman wells Oct 26 at 11:51
my command is actually Select(VenApplication.ApplicationidColumn).From<VenApplication>.().GetRecordCount(); – colman wells Oct 26 at 11:52
Well Try : Select(VenApplication.ApplicationidColumn).From(VenApplication).GetRecordCount(); – Pino Oct 26 at 13:07
Did this work..? – Pino Oct 28 at 13:08
Shouldn't the syntax be: Select(VenApplication.ApplicationidColumn).From(VenApplication.Schema).GetRecordCount(); – Adam Oct 31 at 21:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.