I've extended the pages table and now I want to use some of the data in a domain object called "Tags".
So I tried the following in the /Configuration/TypoScript/setup.txt:

plugin.myextension.persistence.classes.Tx_myextension_Domain_Model_Tag {
    mapping {
        tableName = pages
        recordType = Tx_myextension_Domain_Model_Tag
        columns {
            tx_myextension_tag_name.mapOnProperty = name
            uid.mapOnProperty = id
        }
    }
}

But It seems that the extension tries to access the table Tx_myextension_Domain_Model_Tag (which doesn't exist)

This is the error I receive:

Tx_Extbase_Persistence_Storage_Exception_SqlError`

Table 'tx_myextension_domain_model_tag' doesn't exist: SELECT tx_myextension_domain_model_tag.* FROM tx_myextension_domain_model_tag WHERE tx_myextension_domain_model_tag.id = '24' LIMIT 1

What have I done wrong?

link|improve this question

feedback

5 Answers

did you try "config.tx_extbase" instead of "plugin.myextension"?

Something like

config.tx_extbase.persistence.classes.Tx_MyExtension_Domain_Model_Tag.mapping.tableName = pages

works for me.

link|improve this answer
works for me(tm) – pduersteler Feb 17 '11 at 13:53
Does not work for me. In my extension I have a Domain Model Tx_Extname_Domain_Model_Member wich extends Tx_Extbase_Domain_Model_FrontendUser. I map my Model to fe_users by config.tx_extbase.persistence.classesTx_Extname_Domain_Model_Member.mapping.tab‌​leName=fe_users but when I try to save a record in BE, I get the error SQL error: 'Table 'usrdb_typo3.tx_extname_domain_model_member' doesn't exist'. Thus I assume the mapping does not work properly. However it is shown im my TS object browser. – Martin May 18 '11 at 9:21
feedback

Don't forget to include your extension typoscript template into your template ( template > edit whole template > include static templates ), otherwise your setup.txt is not evaluated.

link|improve this answer
feedback

To check which recordType(s) are acceptable use Configuration module in BE, in $TCA section find your table ([pages] in this case) and check type column (...[ctrl][type] - for pages it's 'doktype', which decides if page record is standard page or sysfolder etc.).

This column is tinyint(3) in database, so you can not write value 'Tx_myextension_Domain_Model_Tag' to it. Create in your ext new doktype identified by number and set recordType to it.

Optionaly you can just remove recordType from mapping config if page's type doesn't matter to you.

link|improve this answer
feedback

Tx_myextension_Domain_Model_Tag is the name of your object right ? But I guess this is not the name of the table you are trying to access. So my guess is that the name you are providing into the value "tableName" is wrong. What does "pages" contain ?

link|improve this answer
This is the name of the class, you're right. The table "pages" is the typo3-pages table, so it contains all pages of typo3 (plus the columns I've added for the extension as [..]tag_name) – hering Nov 8 '10 at 13:10
I don't see how you specify the mapping in the sample you're providing. It just says that your persistence model is aware that the class Tx_myextension_Domain_Model_Tag is mapped, but do you specify explicitly that this class is mapped to the table you want ? If not, your error is normal because it would take the name of the class as the name of the table (which, as you said, doesn't exist). – Hal Nov 8 '10 at 13:56
But in the mapping I specified the name of the table (tableName=pages). Maybe I'm wrong with the syntax, but I thought my piece of code should do what I expect: Map the Domain class to the pages-table and prevent extbase from trying to access a table named like the domain class. – hering Nov 9 '10 at 8:22
feedback

Have you specified the individual pages as recordtype Tx_myextension_Domain_Model_Tag ? It's supposed to go into the doctype field of the pages table (therefore you'll need to change the mysql datatype of that field. Otherwise Extbase doesn't know that this specific page is an extbase record and not a regular page. See more about single table inheritance (STI) in Extbase: http://pascal-jungblut.com/blog/blog-post/2010/11/06/single-table-inheritance-in-extbase.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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