I added python scripts for MySqlWorkbench on Github.
https://github.com/tmsanchez/workbenchscripts
Feel free to contribute
Desarrollo de software y algo más
I added python scripts for MySqlWorkbench on Github.
https://github.com/tmsanchez/workbenchscripts
Feel free to contribute
[WARNING] El tipo simple "c_CodigoPostal" no se ha asignado a Enum debido al límite de EnumMemberSizeCap. Recuento de facetas: 95,777, límite actual: 256. Puede utilizar el atributo de personalización "typesafeEnumMaxMembers" para ampliar el límite.El contenido del archivo binding.xjb es el siguiente:
línea 229 de http://www.sat.gob.mx/sitio_internet/cfd/catalogos/catCFDI.xsd
@FXML
private TableViewtable;
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage stage) {
Scene scene = new Scene(new Group());
stage.setTitle("Table View Sample");
stage.setWidth(450);
stage.setHeight(550);
final Label label = new Label("Address Book");
label.setFont(new Font("Arial", 20));
table.setEditable(true);
// Create Columns
TableColumn firstNameCol = new TableColumn("First Name");
firstNameCol.setMinWidth(100);
firstNameCol.setCellValueFactory(new PropertyValueFactory<>("firstName"));
TableColumn lastNameCol = new TableColumn("Last Name");
lastNameCol.setMinWidth(100);
lastNameCol.setCellValueFactory(new PropertyValueFactory<>("lastName"));
TableColumn emailCol = new TableColumn("Email");
emailCol.setMinWidth(200);
emailCol.setCellValueFactory(new PropertyValueFactory<>("email"));
// add columns to TableView
table.getColumns().addAll(firstNameCol, lastNameCol, emailCol);
}
@Override
public void initialize(URL url, ResourceBundle rb) {
tableViewUtil.createColumns(Person.class, tableView, headers, personList);
}
| TableView with no columns |
| TableView after call createColumns method |
| TableView with columns at design time |
| TableView with data after call assignColumns |