Jump to content

Simplest way to create a database accessible to a Java applet over the internet

- - - - -

  • Please log in to reply
1 reply to this topic

#1
cromulen7

cromulen7

    Newbie

  • Members
  • Pip
  • 1 posts
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.

#2
Dreamcatcher

Dreamcatcher

    Learning Programmer

  • Members
  • PipPipPip
  • 39 posts
Well you can use mysql and run the query of creating database and tables.
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