Jump to content

Table creation/Postal addresses: Difference between revisions

Added BASIC256
m (→‎{{header|Wren}}: Minor tidy)
(Added BASIC256)
Line 182:
 
'</syntaxhighlight>
 
=={{header|BASIC256}}==
<syntaxhighlight lang="vbnet"># create a new database file or open it
dbopen "addresses.sqlite3"
 
# delete the existing table - If it is a new database, the error is captured
onerror errortrap
dbexecute "drop table addresses;"
offerror
 
# create the table
dbexecute "CREATE TABLE addresses (addrID integer, addrStreet string, addrCity string, addrState string, addrZIP string);"
 
# close all
dbclose
end
 
errortrap:
# accept the error - show nothing - return to the next statement
return</syntaxhighlight>
 
=={{header|C}}==
2,136

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.