Search
 
SCRIPT & CODE EXAMPLE
 

SQL

ring MySQL Create Database

See "MySQL Test - Create Database" + nl
con = mysql_init()

See "Connect" + nl
if mysql_connect(con,"localhost","root","root") = 0
        see "Can't connect" + nl
        see "Error : " + mysql_error(con) + nl
        mysql_close(con)
        bye
ok

See "Create Database..." + nl
mysql_query(con,"CREATE DATABASE mahdb")

See "Close Connection" + nl
mysql_close(con)
Comment

PREVIOUS NEXT
Code Example
Sql :: we are intrested to work with your organization 
Sql :: table values functions in SQL 
Sql :: VERIFY INDEXES WITH PARTITIONS IN SQL ORACLE 
Sql :: reset increment sqk 
Sql :: select even number id data from table 
Sql :: employee name starting with in sql 
Sql :: delete duplicates based on 2 columns postgres 
Sql :: compare two tables to find unmatched records 
Sql :: how to find lowest salary by departments ? 
Sql :: kie business put user infos in database 
Sql :: partitioning in oracle-base 
Sql :: mysql on delete set null 
Sql :: how to install sql server 
Sql :: connect to remote mysql server 
Sql :: java.sql.SQLNonTransientConnectionException: Public Key Retrieval is not allowed 
Sql :: max in postgresql 
Sql :: connecting fastapi to mysql server 
Sql :: mysql storage engines 
Sql :: how to select the lowest values from table per client sql 
Csharp :: guid.empty 
Csharp :: unity scene load 
Csharp :: asp.net validate web.config 
Csharp :: c# writeline debug 
Csharp :: csgo throw last grenade bind 
Csharp :: how to detect collision in unity 
Csharp :: how to wait in c# 
Csharp :: c# random color 
Csharp :: how to do a foreach loop in c# for dictionary 
Csharp :: c# datetime current 
Csharp :: c# list string initialize inline 
ADD CONTENT
Topic
Content
Source link
Name
7+9 =