User Tools

Site Tools


c:mysql:mysql.h:mysql_create_db

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

c:mysql:mysql.h:mysql_create_db [2013/02/25 23:30]
Daniel Gohlke
c:mysql:mysql.h:mysql_create_db [2024/02/16 01:12] (current)
Line 5: Line 5:
  
 ==== description of mysql_create_db ==== ==== description of mysql_create_db ====
-mysql_create_db is in work by code-reference.com \\  +creates the database named by the db parameter. \\ 
-if you are faster... don't hasitate and add it+mysql_create_db deprecated use mysql_query() to create a database 
  
 <code c> <code c>
-no example at the moment+#include <stdio.h> /* including standard library */  
 +#include <mysql/mysql.h> 
 +  
 +MYSQL *my; 
 +MYSQL_ROW  row; 
 +MYSQL_RES  *mysql_res;  
 + 
 +int main( void ){ 
 +char host[20]; 
 +char user[20]; 
 +char pass[20]; 
 +unsigned long numrows = 0; 
 + 
 +my = mysql_init(NULL); 
 +  
 +  
 +sprintf(host,"localhost"); 
 +sprintf(user,"username"); 
 +sprintf(pass,"password"); 
 +  
 +if (my == NULL ) { 
 +printf("Cant initalisize MySQL\n"); 
 +return 1; 
 +
 +  
 +if( mysql_real_connect (my,host,user,pass,NULL,0,NULL,0)  == NULL) { 
 +  printf("Error cant login\n"); 
 +  } else { 
 +  printf("Login correct\n"); 
 +  } 
 + 
 +mysql_create_db(my,"test"); 
 + 
 +printf("test db created\n"); 
 +mysql_close(my); 
 +return 0; 
 +}
 </code> </code>
  
 ===== output of mysql_create_db c example ===== ===== output of mysql_create_db c example =====
-    no example at the moment+    Login correct 
 +    test db created
  

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War
c/mysql/mysql.h/mysql_create_db.1361831412.txt · Last modified: 2024/02/16 01:11 (external edit)

Impressum Datenschutz