Home  >  Article  >  Backend Development  >  symfony新建表时出有关问题

symfony新建表时出有关问题

WBOY
WBOYOriginal
2016-06-13 13:52:14908browse

symfony新建表时出问题!
我想在symfony1.0开发的系统中加一个表,我的scheml.yml文件内容是:
---
ep:
  _attributes:
  package: lib.model
  defaultIdMethod: native
  number:
  _attributes:
  phpName: Number
  nid:
  type: integer(11)
  required: true
  primarykey: true
  name:
  type: varchar(20)
  required: true
  perinfo:
  type: varchar(20)
  required: true
我用的命令是symfony propel-build-all app  
编译到最后一行时,出现
php: symbol lookup error: /usr/lib/libxslt.so.1: undefined symbol: xmlXPathContextSetCache
om中生成了基类,但数据库中没有新建number这个表.
网上查了好久,还是没找到原因。
我在libsxslt.so.1中搜索xmlXPathCOntextSetCache时,
找到了该行xmlXPathInit xmlXPathContextSetCache xmlXPathRegisterVariableLookup !
哪位熟悉symfony框架的高手,能帮我解答一下吗?这个问题困扰我好久了,这个没解决,后面的项目没法做!本人接触 symfony不久!

------解决方案--------------------
可以先通过phpmyadmin或者其他客户端工具建立一张表,然后执行build-schema也可以呀
------解决方案--------------------
Symfony只是一个基于MVC模式的面向对象的PHP5框架而已,建表你可以用phpmyadmin或Navicat来建啊.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn