📄 creatingdatabases.htm
字号:
<html>
<head>
<title>Creating and Deleting Databases</title>
</head>
<!--#include virtual="/inc/header.php"-->
<table width="100%" border="0" cellspacing="0" cellpadding="2" bgcolor="#FFFFFF">
<tr>
<td align="left">
<span style="font-family:Helvetica,Arial; font-size:12pt; color:#000000"><b>Creating and Deleting Databases
<br>
</b></span>
</td>
<td align="right">
<font face="Arial" size="2">
<a href="gettinghelp.htm">Previous</a>
<a href="overview.htm">Top</a>
<a href="creatingtables.htm">Next</a>
</font>
</td>
</tr>
</table>
<br><br>
<span style="font-family:Helvetica,Arial; font-size:10pt; color:#000000">
<br>
<b>Creating databases
<br>
<br>
</b>To create Absolute DB database file manually, you can use DBManager utility from Absolute DB installation set (...\AbsoluteDatabase\Ultils\Bin\DBManager.exe).
<br>
<br>
To create database from your application, use the <a href=tabsdatabase_createdatabase.htm>CreateDatabase</a> method of <a href=tabsdatabase.htm>TABSDatabase</a> component.
<br>
<br>
<b>Example:</b>
<br>
<span style="font-family:Courier New; font-size:8pt; color:#000000"> ABSDatabase1.DatabaseName := <span style="font-family:Courier New; font-size:8pt; color:#000080">'emp_db'</span></span><span style="font-family:Courier New; font-size:8pt; color:#000000">; <span style="font-family:Courier New; font-size:8pt; color:#007F00">// unique name used further to identify db</span></span><span style="font-family:Courier New; font-size:8pt; color:#000000">
<br>
ABSDatabase1.DatabaseFileName := <span style="font-family:Courier New; font-size:8pt; color:#000080">'c:\data\employees.abs'</span></span><span style="font-family:Courier New; font-size:8pt; color:#000000">;
<br>
<b>if</b> (<b>not</b> ABSDatabase1.Exists) <b>then</b>
<br>
ABSDatabase1.CreateDatabase;
<br>
<br>
<br>
</span><span style="font-family:Helvetica,Arial; font-size:10pt; color:#000000"><b>Deleting databases
<br>
<br>
</b>To delete Absolute DB database file from the application code, use TABSDatabase.<a href=tabsdatabase_deletedatabase.htm>DeleteDatabase</a> method.</span><span style="font-family:Courier New; font-size:8pt; color:#000000">
<br>
</span></span>
<!--#include virtual="/inc/footer.php"-->
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -