sqlite3

    2熱度

    1回答

    純SQL(在源碼)是這不會實現LINQ結果: select * from Employees order by case WorkDay WHEN 'MON' then 0 WHEN 'TUE' then 1 WHEN 'WED' then 2 WHEN 'THU' then 3 WHEN 'FRI' then 4 END 結果在SQ

    1熱度

    2回答

    我嘗試使用sqlite3將數據導入我的AWS RDS數據庫中的表babyName。對於這兩種方法我試過了,第一個每次data_entry()工作正常,但第二new_data_entry()給我 Cursor is not connected 或 Not all parameters are used 錯誤。你可以幫我嗎? import mysql.connector from mysql.con

    -1熱度

    1回答

    我想在py腳本中將SQL查詢的結果添加到數值變量中。 下面是腳本的一部分: cur.execute("select count() from tanulo") szam = cur.fetchone() print (szam) 當運行該腳本,我得到的結果: (182) 我怎樣才能得到這個結果作爲整數? 我想用這個數字在腳本中做其他事情。 它應該是一個整數,並且應該被添加到

    0熱度

    1回答

    我想選擇異步sqlite3數據庫的一些數據。但由於db.each是一個異步功能,我以下select功能無法正常工作。 如何添加一個Promise來等待結果? const sqlite3 = require('sqlite3').verbose(); export default function select(database, table) { return new Promise

    0熱度

    1回答

    我已經做了一個數據庫,並添加了一些隨機的細節。我從數據庫中提取了這些數據,我需要在Tkinter GUI窗口中輸出這些數據。當使用標籤輸出內容時,我通常會放置文本。 example = Label(self.frame, text='Example') 是否還有別的東西我應該用來代替標籤? def create_records(): c.execute('CREATE TABLE I

    0熱度

    2回答

    我想在python中存儲用戶名和生日的SQL數據庫。目前我有這個代碼; sql_command = ("""INSERT INTO birthdays(name, birthday) VALUES (%s,%s);""", (name, birthday)) cursor.execute(*sql_command) 但是,當我輸入它,它給了我一個錯誤消息。我已經使用適當的名稱和列創建了數據庫

    1熱度

    1回答

    我有一段代碼,對我來說總是不起作用。有時候它會返回有關數據庫鎖定的錯誤,有時還會涉及連接。 這是代碼: string sql = String.Format("insert into {0}({1}) values({2});", tableName, columns, values); SQLiteConnection myConn = null; try { myConn =

    0熱度

    1回答

    我有以下代碼: string sql = String.Format("insert into {0}({1}) values({2});", tableName, columns, values); SQLiteConnection myConn = null; try { myConn = new SQLiteConnection(dbConnection); myC

    1熱度

    1回答

    我有sqlite的方法,使SELECT查詢: try { myConn.Open(); using(SQLiteCommand sqCommand = new SQLiteCommand(sql, myConn)) { sqCommand.CommandText = sql; SQLiteDataReader reader = sqCommand.ExecuteReade

    0熱度

    1回答

    我正在使用Visual Studio進行單元測試。創建一個測試項目,其目錄位於我正在測試的項目內。 我想「單元測試」一個函數打開數據庫文件,並根據數據庫的內容創建類對象。 函數本身實際上工作正常。 bool import_materials_from_db(const char *db_name){ sqlite3 *db; int rc = sqlite3_open_v2(d