# |
Apr 4th 2019, 14:44 |
asdfgh |
i will use char 36 |
# |
Apr 4th 2019, 14:44 |
asdfgh |
thank you dereuromark |
# |
Apr 4th 2019, 14:44 |
this.impetus |
If I want to use Inflector in an element, how do I access it? Simply beginning with ```Inflector::<method>``` gives me "Class 'Inflector' not found" |
# |
Apr 4th 2019, 14:43 |
dereuromark |
there are more performant solutions using binary16, but that requires custom Type classes, as in shim plugin etc |
# |
Apr 4th 2019, 14:43 |
dereuromark |
this should be well documented - as char 36 as simple default |
# |
Apr 4th 2019, 14:42 |
asdfgh |
guys pardon, what is the correct column type (and length) for uuid ? |
# |
Apr 4th 2019, 14:32 |
slackebot2 |
'123456', 'database' => 'database_name', 'prefix' => '', 'encoding' => 'utf8', 'timezone' => 'UTC', ); }``` |
# |
Apr 4th 2019, 14:32 |
weto.jc |
I'm following this tutorial, but importing the environment variable into database.php is giving the following error: ```syntax error, unexpected '(', expecting ')' in <b>/var/www/html/app/Config/database.php</b> on line <b>64</b>``` I can not continue ```class DATABASE_CONFIG { public $default = array( 'datasource' => 'Database/Mysql', 'persistent' => true, 'host' => env('MYSQL_URL', false), 'login' => 'admin', 'password' => |
# |
Apr 4th 2019, 14:24 |
this.impetus |
gotcha, ty |
# |
Apr 4th 2019, 14:24 |
ricksaccous |
years have to be in the format '2012' => '2012' |
# |
Apr 4th 2019, 14:24 |
weto.jc |
@ricksaccous, has access to reading and writing |
# |
Apr 4th 2019, 14:23 |
this.impetus |
Also tried ```$this->Form->select('academic_year', $years)``` to the same effect |
# |
Apr 4th 2019, 14:20 |
this.impetus |
Quick question re: form helper. Trying to pass an array of options to a select field, ```$this->Form->control('academic_year', ['type'=>'select', 'options' => $years])``` Each option reads as a year, but the actual values are just indexed 0-n. How do I set the values *and* the displayed option? |
# |
Apr 4th 2019, 14:17 |
asdfgh |
thanks! |
# |
Apr 4th 2019, 14:17 |
asdfgh |
ok |
# |
Apr 4th 2019, 14:17 |
asdfgh |
i can set users hasMany Agents users hasMany companies and so on...or hasOne depends fi the relation is 1:1 |
# |
Apr 4th 2019, 14:17 |
ricksaccous |
also does the user have write access |
# |
Apr 4th 2019, 14:17 |
ricksaccous |
@weto.jc does the user have read access to the db? |
# |
Apr 4th 2019, 14:17 |
asdfgh |
ok |
# |
Apr 4th 2019, 14:16 |
admad |
asdfgh: that works too |
# |
Apr 4th 2019, 14:16 |
ricksaccous |
also the error you got that you posted i think just said that the user didn't have permission to that db |
# |
Apr 4th 2019, 14:15 |
ricksaccous |
@weto.jc what did you name the database? |
# |
Apr 4th 2019, 14:12 |
asdfgh |
admad yes, but now i have a doubt...if why is bette rto store the foreign_key in users that point to agents (for example) instead of using the user_id column in agents ? |
# |
Apr 4th 2019, 14:11 |
weto.jc |
@ricksaccous I created the database and entered the data with Docker, the database and the tables were created correctly. |
# |
Apr 4th 2019, 14:11 |
admad |
store the role/type too in users table along with foreign key |
# |
Apr 4th 2019, 14:10 |
asdfgh |
using user_id in agents, companies and so on ? |
# |
Apr 4th 2019, 14:10 |
asdfgh |
admad yes ok, nbut then how can i "link" the users to a specific table? |
# |
Apr 4th 2019, 14:09 |
admad |
using single table to hold authentication info is the right approache |
# |
Apr 4th 2019, 14:08 |
asdfgh |
guys how can i handle login from different types (roles) of users? i have agents,companies, administrators etc at the moment i have a column named foreign_key where i store the ID of the users in other tables (Agents, companies) but i do not know if it is the best approach |
# |
Apr 4th 2019, 14:06 |
ricksaccous |
@weto.jc did you create an actual schema? |
# |
Apr 4th 2019, 14:04 |
weto.jc |
@rochasmarcelo This way I can connect to the database (native php) |
# |
Apr 4th 2019, 13:54 |
rochasmarcelo |
@weto.jc I don't see database name here ''host' => 'meubanco', 'login' => 'admin', 'password' => '123456',' |
# |
Apr 4th 2019, 13:43 |
ricksaccous |
welp i learned something today |
# |
Apr 4th 2019, 13:40 |
ricksaccous |
thanks lol |
# |
Apr 4th 2019, 13:40 |
neon1024 |
LMGTFY |
# |
Apr 4th 2019, 13:40 |
neon1024 |
https://dev.to/jackmarchant/offset-and-cursor-pagination-explained-b89 |
# |
Apr 4th 2019, 13:39 |
neon1024 |
So you don’t load an entire result set |
# |
Apr 4th 2019, 13:39 |
neon1024 |
A cursor is like an offset |
# |
Apr 4th 2019, 13:38 |
ricksaccous |
just curious, haven't developed it |
# |
Apr 4th 2019, 13:38 |
ricksaccous |
like the load more types as you scroll or something? |
# |
Apr 4th 2019, 13:38 |
neon1024 |
Did anyone ever developer a cursor paginator for Cake? |