Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. MysqlConnection conn = new MysqlConnection("...");
  2. DataTable dt = conn.GetSchema("Tables");
  3.  
  4. //foreach table
  5.  
  6. DataTable dt = conn.GetSchema("Columns",column_res);
  7.  
  8. //generate prepared statement sql by the columns.
  9.  
  10. DataTable dt = conn.GetSchema("Columns",column_res);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement