1
在Powershell中,我有一個簡單的Mysql插入命令。Powershell中的last_insert_id
$query = "INSERT INTO TABLE1 (id, col1, col2) VALUES (1, 'two', 'three');"<br>
$command = New-Object MySql.Data.MySqlClient.MySqlCommand($query, $connection)
$command.ExecuteNonQuery()
我正在使用Mysql Connector Net 6.2.4。
是否有可能返回last_insert_id()
或類似的東西?
我已經找了一些信息here,但找不到任何東西。
有什麼想法?