Creating a table in mysql

Discussion of open issues, suggestions and bugs regarding ADO.NET provider for MySQL
Post Reply
azazas

Creating a table in mysql

Post by azazas » Wed 07 Dec 2005 12:37

How do i create a table in J#/C# using coreLab direckt mysql what class do i use and so on...??

Serious

Post by Serious » Wed 07 Dec 2005 13:31

To create data table on server side use 'create table' statement (for syntax details refer to MySQL documentation).
To create table with data on client side use MySqlDataTable component. See help topics for this component to find an example or see DbTable demo project which comes with MySQLDirect .NET.

Post Reply