Date: Monday, November 28, 2005 @ 10:27:06
  Author: csaba
    Path: /cvsroot/carob/libmysequoia/config

   Added: createtbl.sh (1.1)

Create table script added.


--------------+
 createtbl.sh |    7 +++++++
 1 files changed, 7 insertions(+)


Index: libmysequoia/config/createtbl.sh
diff -u /dev/null libmysequoia/config/createtbl.sh:1.1
--- /dev/null   Mon Nov 28 10:27:06 2005
+++ libmysequoia/config/createtbl.sh    Mon Nov 28 10:27:06 2005
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+mysql -uroot -prootpass <<EOF
+USE test;
+CREATE table t1 (a int(11) NOT NULL auto_increment, b int(11) default NULL, 
PRIMARY KEY  (a)) ENGINE=InnoDB; 
+INSERT INTO t1 (b) VALUES (1),(2),(3)
+EOF

_______________________________________________
Carob-commits mailing list
[email protected]
https://forge.continuent.org/mailman/listinfo/carob-commits

Reply via email to