UniGUI的SQLite數據庫(04)


示例項目part1, Part2


1]放FDConnection1和FDQuery1到界面上

 一定要 放一個  FDPhysSQLiteDriverLink1到ServerModule上 


2]在OnFormCreate事件里寫

FDQuery1.Connection := FDConnection1;
FDConnection1.LoginPrompt:=false; //取消登錄提示框
FDConnection1.Open('DriverID=SQLite;Database=test1.Sqlite3');//test1.Sqlite數據庫要與E:\UniGui_Learn\04OnLineIditom\Win32\Debug\Project1.exe位置一致


3]單條數據

FDQuery1.Open('select id,info from atb where id = 11111 ' );
unimemo1.Text:= FDQuery1.fieldbyname('info').asstring; 


4]多條數據

FDQuery1.Open(‘select  id,name,info from atb  where 1=1’);

//FDQuery1.First; //
while not FDQuery1.eof do begin
     unilistbox1.Items.Add( FDQuery1.fieldbyname('name').asstring);
     FDQuery1.next;
end;


5]插入數據

 

 

var xzxx:string; maxId:integer;
begin
  FDQuery1.Open('select max(id) as maxId from atb; ');
  maxId:=  FDQuery1.fieldbyname('maxId').AsInteger+1;{當數據為空里,maxId為null, 要將 ID設為 AUTOINCREMENT}

    xzxx := stringreplace(uniMemo2.Text, '''', '''''', [rfReplaceAll]); //將 (')-> ('')
    xzxx := stringreplace(xzxx, #13#10, 'Z~z~', [rfReplaceAll]); //將 (^p)-> (Z~z~)
    xzxx := 'insert into atb values('
      + IntToStr(maxId)
      + ',''' + StringReplace(uniedit2.Text, '''', '''''', [rfReplaceAll])
      + ''',''' + xzxx + ''')';

   FDQuery1.ExecSQL(xzxx);

    Caption:=  IntToStr(maxId)+'插入新記錄  成功!' ;
end;

1]好像 不能有英文的感嘆號!

2]{當數據為空里,maxId為null, 要將 ID設為 [Id] INTEGER PRIMARY KEY  AUTOINCREMENT,  -- 自增}

    INSERT INTO ToDoListTable VALUES(null, 'aaa',0)//自增列 值 為null 


總是說我字少總是說我字少總是說我字少總是說我字少總是說我字少總是說我字少總是說我字少總是說我字少總是說我字少總是說我字少總是說我字少總是說我字少


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM