0 votes

I have setup Doctrine such that it is capable of working with MySQL POINT and DISTANCE geometrical data types and functions.

Now I need to define fields as the POINT type, but I am not sure Skipper supports this.

Does it?

/**
 * @ORM\Column(name="geo_point", type="point", nullable=true)
 *
 * @var string $geoPoint
 */
protected $geoPoint;
in How To & Manuals by (220 points)
edited by

1 Answer

0 votes

Hi,

it's possible to extend Skipper to work with any datatype you need (as same as you can add/edit any ORM property).

Go to following help page: https://help.skipper18.com/expert-usage/customization/configuration-file-structure and find "Data types definitons" section.

You can edit existing Doctrine2 configuration files (doctrine2.skipper.cfg.xml) or you can create your own file for each project or for all your project (check following page with more info https://help.skipper18.com/expert-usage/customization/configuration-files)

To add "point" type simply add following line to datatype definitions:

<data-types>
  <data-type name="point"/>
</data-types>

and you will be able to use this datatype in skipper.

by Skipper developer (141k points)

well that's just amazing! thank you...

no problem, you're welcome!

What's the 'unified-name' attribute for?

It's a way how to tell Skipper how to translate external datatypes during import. For example when importing MySQL Workbench project, DB Designer project etc. So in you case you don't have to use this attribute at all.

[Closed] Does that support a label attribute?