Posts: 1,349
Threads: 194
Joined: Jan 2014
Reputation:
0
After following the tutorial i won't need to create the tables or anything just enter the mysql data base pass user ip etc and done ?
Posts: 63
Threads: 5
Joined: Jul 2010
Reputation:
0
Hey, I'm interested in using ORM but I have a question...
If my user data in mysql is seperated in three tables is there a way to handle all the data with orm or not?
Posts: 2
Threads: 0
Joined: Jul 2015
Reputation:
0
Nice tutorial!I finally learnt how these things work!
Posts: 845
Threads: 3
Joined: Jun 2010
Quote:
Originally Posted by Axuj
Hey, I'm interested in using ORM but I have a question...
If my user data in mysql is seperated in three tables is there a way to handle all the data with orm or not?
|
orm_select, orm_insert, orm_update and orm_delete work only on the table you specified when creating the ORM instance. However, you can use your own queries to fetch data and simply assign it to your registered variables through "orm_apply_cache". That means you can use the "automatic assignment of registered variables" feature, but not the "automatic query generation and execution" feature.
Posts: 2
Threads: 0
Joined: Jul 2015
Reputation:
0
Will it be a problem if I will have one table with ~100 columns,using the orm?I mean will everything work fine without lags and such things?