“Ring Mysql Zdobądź wstawiony identyfikator wiersza” Kod odpowiedzi

Ring Mysql Zdobądź wstawiony identyfikator wiersza

con = mysql_init()
see "connect to database" + nl
mysql_connect(con,"localhost","root","root","mahdb")
see "drop table" + nl
mysql_query(con, "DROP TABLE IF EXISTS Customers")
see "create table" + nl
mysql_query(con, "CREATE TABLE Customers(Id INT PRIMARY KEY AUTO_INCREMENT, Name TEXT)")
see "insert record" + nl
mysql_query(con, "INSERT INTO Customers(Name) VALUES('Mahmoud')")
see "insert record" + nl
mysql_query(con, "INSERT INTO Customers(Name) VALUES('Samir')")
see "insert record" + nl
mysql_query(con, "INSERT INTO Customers(Name) VALUES('Fayed')")
see "insert record" + nl
mysql_query(con, "INSERT INTO Customers(Name) VALUES('Test 2015')")

see "inserted row id : " + mysql_insert_id(con) + nl
see "close database" + nl
mysql_close(con)
Joker

Ring Mysql Zdobądź wstawiony identyfikator wiersza

MySQL_Insert_ID() ---> Inserted row id as number
Joker

Odpowiedzi podobne do “Ring Mysql Zdobądź wstawiony identyfikator wiersza”

Pytania podobne do “Ring Mysql Zdobądź wstawiony identyfikator wiersza”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu