當前位置:首頁 » 操作系統 » 自動生成資料庫

自動生成資料庫

發布時間: 2022-07-20 19:50:15

❶ 表單自動生成資料庫

在你的模板目錄下新建一個模板文件rss_php.htm
內容為
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title><![CDATA[{dede:global.cfg_webname/}]]></title>
<link>{dede:global.cfg_basehost/}</link>
<description>{dede:global.cfg_description/}</description>
<language>zh-cn</language>
<generator><![CDATA[{dede:global.cfg_webname/}]]></generator>
<webmaster>[email protected]</webmaster>
{dede:arclist row='1000' titlelen='100' orderby='pubdate'}
<item>
<title><![CDATA[[field:title/]]]></title>
<link>[field:arcurl/]</link>
<description><![CDATA[[field:description function='html2text(@me)'/]]]></description> <pubDate>[field:pubdate function='strftime("%a, %d %b %Y %H:%M:%S +0800",@me)'/]</pubDate>
<category><![CDATA[[field:typename/]]]></category>
<author><![CDATA[[field:writer/]]]></author>
</item>
{/dede:arclist}</channel>
</rss>

❷ 如何根據word中定義的表結構,自動生成資料庫表

理論上應該是可以實現,不過應該很復雜;
1、把Word轉換成HTML
PS:個人建議,以上是一些閑著沒事乾的人想玩程序演算法邏輯的人可以去玩下,實際不建議這么做,成本好像有點大了吧,當然了,如果你真的實現了,希望封裝成公用方法貢獻出來貢獻就太好了鼓掌
我想你現在遇到的情況是,手上有一份資料庫設計文檔,裡面有一對字典表,你想在資料庫中建立這堆表,如果要一個一個在建那很麻煩,不過在powerdesigner裡面建的話
應該也不算很麻煩吧,慢慢折騰吧

❸ 用eclipse寫java怎樣自動生成資料庫表

在Eclipse中右鍵單擊你已建立的工程,選擇「Properties」,在左側選擇「Java Builde Path」,單擊右側的「Add External JARs」,從彈出窗口中選擇上述三個jar包即可。

❹ excel資料庫自動生成

一般情況是用
數據透視表
完成的。這個在菜單「數據」「數據透視表」中生成。
1.在工作表中,選擇包含數據的單元格。在「數據」菜單上,單擊「數據透視表和數據
透視圖
」。將顯示向導。
2.在向導的步驟
1
中,確保選擇「Microsoft
Excel
數據列表或資料庫」作為
第一個問題
的答案。
3.確保選擇「數據透視表」作為下一個問題的答案。
4.單擊「完成」。
5.從「數據透視表欄位列表」中拖動需要分類的欄位與統計的欄位到相應區域就可以了。

❺ 如何實現PHP自動創建資料庫

你做好程序以後,把資料庫導出成sql文件
1、連接資料庫
2、讀取這個sql文件里的sql語句,並執行
3、生成一個資料庫連接參數的php文件
<?php
$con=mysql_connect("localhost","peter","abc123");
if(!$con)
{
die('Couldnotconnect:'.mysql_error());
}

if(mysql_query("CREATEDATABASEmy_db",$con))
{
echo"Databasecreated";
}
else
{
echo"Errorcreatingdatabase:".mysql_error();
}

mysql_close($con);
?>

<?php
classReadSql{
//資料庫連接
protected$connect=null;
//資料庫對象
protected$db=null;
//sql文件
public$sqlFile="";
//sql語句集
public$sqlArr=array();
publicfunction__construct($host,$user,$pw,$db_name){
$host=empty($host)?C("DB_HOST"):$host;
$user=empty($user)?C("DB_USER"):$user;
$pw=empty($pw)?C("DB_PWD"):$pw;
$db_name=empty($db_name)?C("DB_NAME"):$db_name;
//連接資料庫
$this->connect=mysql_connect($host,$user,$pw)ordie("Couldnotconnect:".mysql_error());
$this->db=mysql_select_db($db_name,$this->connect)ordie("Yoncannotselectthetable:".mysql_error());
}
//導入sql文件
publicfunctionImport($url){
$this->sqlFile=file_get_contents($url);
if(!$this->sqlFile){
exit("打開文件錯誤");
}else{
$this->GetSqlArr();
if($this->Runsql()){
returntrue;
}
}
}
//獲取sql語句數組
publicfunctionGetSqlArr(){
//去除注釋
$str=$this->sqlFile;
$str=preg_replace('/--.*/i','',$str);
$str=preg_replace('//*.**/(;)?/i','',$str);
//去除空格創建數組
$str=explode("; ",$str);
foreach($stras$v){
$v=trim($v);
if(empty($v)){
continue;
}else{
$this->sqlArr[]=$v;
}
}
}
//執行sql文件
publicfunctionRunSql(){
foreach($this->sqlArras$k=>$v){
if(!mysql_query($v)){
exit("sql語句錯誤:第".$k."行".mysql_error());
}
}
returntrue;
}
}
//範例:
header("Content-type:text/html;charset=utf-8");
$sql=newReadSql("localhost","root","","log_db");
$rst=$sql->Import("./log_db.sql");
if($rst){
echo"Success!";
}
?>

❻ 如何利用powerdesigner自動生成一個具有外鍵的資料庫

Powerdesigner對於一個剛開始接觸的人,需要知道和了解的是操作,只有操作會了才會慢慢理解其中含義,而不是一來就講發展背景,原理等等一大堆,後來也記不住,先把操作記清楚了,這些含義和原理會再不斷的學習中顯現出來,那時候再深究就會很深刻。
第一步:建立模型:
clip_image002
第二步,選擇物理模型進行創建工作空間
clip_image004
第三:生成後的工作空間:
clip_image006
第四步,簡單了解工具欄中的相關工具操作
clip_image008
第五步,實際建立一個空表
clip_image010
第六步:在表中放入表名
clip_image012
第七步:在表中放入相應的欄位名,數據類型,欄位長,主外鍵
clip_image014
最後按確定即可完成一個表。
第八步:繼續建立一個表,步驟和之前一樣
clip_image016
第九步:將兩個表關聯起來,通過工具中的關系進行自動生成外鍵
clip_image018
第十步:生成外鍵之後的物理模型圖
clip_image020
第十一步:生成資料庫
clip_image022
第十二步:生成資料庫時的一些資料庫文件名和路徑的編輯
clip_image024
第十三:資料庫文件生成完畢。
clip_image026
桌面上會出現這樣一份文件:
clip_image028
將資料庫文件右擊txt打開時會看到sql語句:
/*==============================================================*/
/* DBMS name: Sybase SQL Anywhere 11 */
/* Created on: 2012/4/20 9:57:13 */
/*==============================================================*/
if exists(select 1 from sys.sysforeignkey where role=』FK_CLASS_REFERENCE_USER』) then
alter table class
delete foreign key FK_CLASS_REFERENCE_USER
end if;
if exists(
select 1 from sys.systable
where table_name=』class』
and table_type in (『BASE』, 『GBL TEMP』)
) then
drop table class
end if;
if exists(
select 1 from sys.systable
where table_name=』user』
and table_type in (『BASE』, 『GBL TEMP』)
) then
drop table "user"
end if;
/*==============================================================*/
/* Table: class */
/*==============================================================*/
create table class
(
class_id varchar(64) not null,
class_name varchar(64) null,
user_id varchar(64) null,
constraint PK_CLASS primary key clustered (class_id)
);
comment on column class.class_id is
『班級ID』;
comment on column class.class_name is
『班級名』;
comment on column class.user_id is
『用戶ID』;
/*==============================================================*/
/* Table: "user" */
/*==============================================================*/
create table "user"
(
user_id varchar(64) not null,
user_name varchar(64) null,
password varchar(64) null,
constraint PK_USER primary key clustered (user_id)
);
comment on column "user".user_id is
『用戶ID』;
comment on column "user".user_name is
『用戶名』;
comment on column "user".password is
『密碼』;
alter table class
add constraint FK_CLASS_REFERENCE_USER foreign key (user_id)
references "user" (user_id)
on update restrict
on delete restrict;
至此,如何利用powerdesigner自動生成,建立一個具有外鍵的資料庫操作就完成了!
轉載,僅供參考。

❼ 如何通過sql腳本,在sqlserver2000里自動生成資料庫啊

create database mydatabase--創建一個叫做mydatabase的資料庫

試試看!

❽ 8. 如何自動生成創建資料庫的sql腳本

可以用設計資料庫的設計工具Power Designer自動生成。不過,這個工具只會生成數據結構,數據填充還是要手寫。

❾ C# ef自動生成資料庫

要把Model 轉換成SQl 資料庫 只能還原出結構出來
類似ORM Model First
找到這個類 對應的屬性 跟類名 產生對應的表名+欄位名 的SQl Creat Table 語法

熱點內容
科密加密卡片 發布:2025-01-20 22:45:01 瀏覽:111
蘋果的文件怎麼轉到安卓 發布:2025-01-20 22:43:10 瀏覽:652
c語言迴文串 發布:2025-01-20 22:43:09 瀏覽:767
垃圾壓縮價格 發布:2025-01-20 22:14:05 瀏覽:421
溫十系統如何看處理器配置 發布:2025-01-20 21:59:47 瀏覽:302
米號源碼 發布:2025-01-20 21:55:30 瀏覽:893
電信四川dns伺服器ip 發布:2025-01-20 21:54:51 瀏覽:92
電腦彈出腳本錯誤還能繼續使用嗎 發布:2025-01-20 21:42:29 瀏覽:586
安卓私密照片在哪裡 發布:2025-01-20 21:41:05 瀏覽:5
同濟復試編譯原理 發布:2025-01-20 21:33:54 瀏覽:310