I'm looking for the simplest way to create a database which an applet can access over the internet.
The data will mostly be strings and numbers.
Simplest way to create a database accessible to a Java applet over the internet
Started by cromulen7, Feb 20 2011 11:17 AM
1 reply to this topic
#1
Posted 20 February 2011 - 11:17 AM
|
|
|
#2
Posted 27 February 2011 - 12:18 AM
Well you can use mysql and run the query of creating database and tables.
Also if you are not familiar with terminals you can use MysqlWorkbench or MysqlGuiTools
Take a look: MySQL :: Download MySQL Workbench
Hope it helps
create database [databasename];
create table [table name] (id int(50) not null auto_increment primary key,argument1 varchar(50),argument2 varchar(50), argument3 varchar(50) default 'Unknown');
Also if you are not familiar with terminals you can use MysqlWorkbench or MysqlGuiTools
Take a look: MySQL :: Download MySQL Workbench
Hope it helps
"UNIX is basically a simple operating system, but you have to be a genius to understand the simplicity." -- Dennis Ritchie
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users


Sign In
Create Account

Back to top









