Problem with dbf tables

i am having this problem while accessing dbf tables. I create the server and in the list i can see all the tables. If i open one table i can see al the fields, and i can see also data registared in this table. In my form i try to create a foundset on on the table

var fs = databaseManager.getFoundSet(‘test’,‘mytable’)

but fs.getsize() return always 0 while in the tables are registered many records…
I have signed in the table one primary key (row_ident) and i repeat in the edit/view window of servoy i can see data.

Someone can help me ?

I have already done thie operation some time ago and i read records without problem. Now i don’t know what has changed…

and what if you try this:

var fs = databaseManager.getFoundSet('test','mytable')
fs.loadAllRecords()
var vCount  = fs.getSize()

What is vCount than??

[quote=

var fs = databaseManager.getFoundSet('test','mytable')
fs.loadAllRecords()
var vCount  = fs.getSize()

What is vCount than??[/quote]

Always 0

I have tried to create a new table from servoy or a new tables from foxpro, but the result is always the same…

here i have attached my dbf table…

test.rar (229 Bytes)

don’t ask me what i have done, but now i can see all my records…