使用PowerDesigner中遇到的问题(送100分)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用PowerDesigner中遇到的问题(送100分)相关的知识,希望对你有一定的参考价值。
使用PowerDesigner建立概念数据模型cdm,模型内就一个表,按F4后提示:
existence of relationship or association link
请问是什么原因?
如果您对这一回答非常满意,您可以选择给回答者额外的积分奖励:
(选填)
真搞不懂,下面是怎么到6级的。。。这点常识都没有。直接放分,没人回答分就只能喂狗了,谢谢
模型内就一个表:那不能叫表,那叫实体 Entity
existence of relationship or association link
是警告 是说不存在联系relationship 和关联association
是实体与实体间的
在概念模型中如果只有一个实体当然没有建立联系和关联
关于联系和关联
可以查看我的百度空间 参考技术A
http://infocenter.sybase.com/archive/index.jsp?topic=/com.sybase.stf.powerdesigner.docs_12.0.0/html/cdug/cdugp168.htm
在powerdesinger的CDM模型检查中默认认为“每个entity至少需要存在一个联系或者关系”,报这个警告说明你的entity中有的是“孤立”的
在测试 php 以在 xampp 中发送电子邮件验证时遇到问题
【中文标题】在测试 php 以在 xampp 中发送电子邮件验证时遇到问题【英文标题】:Having trouble testing php to send email verification in xampp 【发布时间】:2012-11-19 06:40:08 【问题描述】:我必须为网站编写登录、注册和受限成员功能,我一切正常,但我无法测试发送验证电子邮件,但也需要。查看它是否发送并测试电子邮件中的验证链接。
我正在运行 Acer Aspire 5920,
Ubuntu 12.04,
Xampp 1.8.1,
Codeigniter 2.1.3
【问题讨论】:
【参考方案1】:在回答我自己的问题时,我需要传递信息来配置 xampp 以发送电子邮件:
$config = Array(
'protocol' => 'smtp',
'smtp_host' => 'ssl://smtp.googlemail.com',
'smtp_port' => 465,
'smtp_user' => 'gmail.login@googlemail.com',
'smtp_pass' => 'your_password',
);
$this->load->library('email', $config);
$this->email->set_newline("\r\n");
$this->email->from('gmail.login@googlemail.com', 'Your Name');
$this->email->to('recipient@destination.tld');
$this->email->subject(' CodeIgniter Rocks Socks ');
$this->email->message('Hello World');
if (!$this->email->send())
show_error($this->email->print_debugger());
else
echo 'Your e-mail has been sent!';
【讨论】:
以上是关于使用PowerDesigner中遇到的问题(送100分)的主要内容,如果未能解决你的问题,请参考以下文章