SQLite有办法透过网络连接吗?
目前在公司的linux pc上有一个SQLite server, 我想用在同个区網底下的win pc去连接SQLite server用ASP進行操作, 请问有办法办到吗? 还是SQLite server无法支持网络连接....找了一个下午
剛才我自己試了下, 底下是我的ASP code, mydb目前是我自己在本機上建出來的sqlite文件, 意思是只要把Linux上那個db文件分享出來, windows只能抓到該檔就能進行操作嗎, 不知道有沒有同步上的問題?
<%
Set conn = Server.createObject("ADODB.Connection") '建立一個連線
Set rs = Server.createObject("ADODB.RecordSet") '建立一個recordset
conn.open "DRIVER={SQLite3 ODBC Driver};Database=C:\mydb"
rs.open "select * from Tab_ID",conn,1,3
Do While not rs.EOF
Response.Write rs("ID") & " <br>" & rs("Name")
rs.movenext
Loop
rs.close '關閉recordset
Set rs = Nothing '將recordset設為nothing
conn.close '關閉連線
%>
};Database=C:\mydb"
这是你本地C盘的,当然不是LINUX上的,LINUX你需要用SAMBA来把文件共享出来。
謝謝^^ 明天到公司試試看!
相关问答:
偶想备份数据表,写了一个批处理,有现成的数据库。但是批处理写到一半不会了,还请帮忙看看,怎么往下。。。
@echo off
echo 正在系统数据库备份,请稍 ......
我用sqliteadmin建了一个数据库test.sdb,可是怎么也打不开提示如下错误:File opened that is not a database file
file is encrypted or is not a database。
我的连接字符串如下楼上的可不可以帮我看看
S ......
在vs2005中引用了using System.Data.SQLite;
定义了一个连数据库连接变量public SQLiteConnection dBConn;
就报下面这个错误了.
The type 'System.Data.Common.DbConnection' is defined in an ass ......
SqlServer中这样统计:
select name from sysobjects where xtype='U'
要知道总数的话就简单了:
select count(*) from sysobjects where xtype='U'
Oracle中这样查询:
Sele ......
用的是sqllite3,请问在linux先如何用C语言导出数据库啊?
"导出数据库"是是什么?
将 tab_xx 中的数据导出到文件a.txt
sqlite> .output a.txt
sqlite> select * from tab_xx;
sqli ......