代码搜索:sqlite3

找到约 267 项符合「sqlite3」的源代码

代码结果 267
www.eeworm.com/read/296298/3906706

readme

With this driver you can access the files created by sqlite3 through the standard Qt sql module. The driver name is QSQLITE3. Although there are many other solutions to access such DB files, I think
www.eeworm.com/read/474523/6811581

c samplext.c

/* * SQLite3 example extension from wiki * http://www.sqlite.org/cvstrac/wiki?p=LoadableExtensions * * Compile with * tcc -rdynamic -shared -o samplext.dll samplext.c */ #include
www.eeworm.com/read/445796/7590205

dfm samplemain.dfm

object FMain: TFMain Left = 199 Top = 162 Width = 696 Height = 480 Caption = 'SQLite3 samples (Aducom Software)' Color = clBtnFace Font.Charset = DEFAULT_CHARSET Font.Color = c
www.eeworm.com/read/398823/7918488

dfm samplemain.dfm

object FMain: TFMain Left = 238 Top = 106 Width = 696 Height = 480 Caption = 'SQLite3 samples (Aducom Software)' Color = clBtnFace Font.Charset = DEFAULT_CHARSET Font.Color = c
www.eeworm.com/read/156228/11817330

pl perlexample.pl

#!/usr/bin/perl # Copyright GPL (c) 2004 Mike Chirico mchirico@users.sourceforge.net mchirico@comcast.net # You will need the following to work with # SQLite3 # # $ perl -MCPAN -e shell # cpan>
www.eeworm.com/read/211881/15171725

py dbpar.py

# sql examples default database parameter # you can create a local_dbpar.py module with definitons # of your own parameters to overrule these defaults #DB_DRIVER = "sqlite3" DB_DRIVER = "access" #DB
www.eeworm.com/read/488400/1230145

yml database.yml

mysql: adapter: mysql database: globalize_test username: root password: root sqlite: adapter: sqlite dbfile: vendor/plugins/globalize/test/db/test.sqlite.db test: adapter: sqlite3 db
www.eeworm.com/read/361182/2951320

cs sqlite3_utf16.cs

namespace Imps.Client.Data { using System; using System.Runtime.InteropServices; internal class SQLite3_UTF16 : SQLite3 { internal SQLite3_UTF16(SQLiteDateFormats fmt)
www.eeworm.com/read/296068/8125118

dsp sqlite3.dsp

# Microsoft Developer Studio Project File - Name="SQLite3" - Package Owner= # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86) D
www.eeworm.com/read/493646/1164558

py sqlite_test3.py

import sqlite3 import datetime, time def adapt_datetime(ts): return time.mktime(ts.timetuple()) sqlite3.register_adapter(datetime.datetime, adapt_datetime) con = sqlite